Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekkrthakur committed Nov 7, 2021
1 parent 8ce0b17 commit 55eaf14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/mlspace/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.0.4"
__version__ = "0.0.5"
__author__ = "Abhishek Thakur"
1 change: 1 addition & 0 deletions src/mlspace/mlspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
class MLSpace:
def __init__(self) -> None:
self.home_dir = os.path.expanduser("~")
os.makedirs(f"{self.home_dir}/.mlspace", exist_ok=True)
self.dockerfiles_dir = os.path.join(self.home_dir, ".mlspace/dockerfiles")

def create_space(self, name: str, backend: str, gpu: bool):
Expand Down

0 comments on commit 55eaf14

Please sign in to comment.