Index: ensure_dependencies.py |
=================================================================== |
--- a/ensure_dependencies.py |
+++ b/ensure_dependencies.py |
@@ -47,7 +47,7 @@ |
NPM_LOCKFILE = '.npm_install_lock' |
-class Mercurial(): |
+class Mercurial: |
def istype(self, repodir): |
return os.path.exists(os.path.join(repodir, '.hg')) |
@@ -94,7 +94,7 @@ |
return url |
-class Git(): |
+class Git: |
def istype(self, repodir): |
return os.path.exists(os.path.join(repodir, '.git')) |