diff options
Diffstat (limited to 'src/ee/project')
-rw-r--r-- | src/ee/project/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ee/project/__init__.py b/src/ee/project/__init__.py index 4bedd97..a1f042f 100644 --- a/src/ee/project/__init__.py +++ b/src/ee/project/__init__.py @@ -19,7 +19,8 @@ class Project(object): self._cfg = cfg @classmethod - def load(cls, project_dir: Path): + def load(cls): + project_dir = Path(".") cfg = load_config(project_dir) return Project(project_dir, cfg) |