Skip to content

Commit

Permalink
Remove debug print statement
Browse files Browse the repository at this point in the history
Unusable :^)
  • Loading branch information
adisunw authored Jan 15, 2020
1 parent e1c775f commit 7a041b1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion gestalt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ def add_config_path(self, path: str) -> None:
ValueError: If the `path` does not exist or is it not a directory
"""
tmp = os.path.abspath(os.path.expandvars(path))
print(tmp)
if not os.path.lexists(tmp):
raise ValueError(f'Given path of {path} does not exist')
if not os.path.isdir(tmp):
Expand Down

0 comments on commit 7a041b1

Please sign in to comment.