diff options
author | 2018-10-11 11:42:53 -0400 | |
---|---|---|
committer | 2019-03-05 10:16:06 -0500 | |
commit | 9665f21abfe23cae78ee9f437da9a46dba19f22e (patch) | |
tree | af004423bb3f3ad36800c9dfc62470d532d9308b /dotfiles/cli.py | |
parent | b3e7538dc223ce06e999c771a2ff6f1052370677 (diff) | |
download | dotfiles-9665f21abfe23cae78ee9f437da9a46dba19f22e.tar.gz dotfiles-9665f21abfe23cae78ee9f437da9a46dba19f22e.tar.bz2 dotfiles-9665f21abfe23cae78ee9f437da9a46dba19f22e.zip |
Fix cli tests with pathlib
Diffstat (limited to 'dotfiles/cli.py')
-rw-r--r-- | dotfiles/cli.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dotfiles/cli.py b/dotfiles/cli.py index a24e38d..a99d098 100644 --- a/dotfiles/cli.py +++ b/dotfiles/cli.py @@ -1,7 +1,9 @@ import click from .exceptions import DotfileException -from .repository import Repositories, DEFAULT_PATH, DEFAULT_REMOVE_LEADING_DOT +from .repository import Repositories +from .repository import PATH as DEFAULT_PATH +from .repository import REMOVE_LEADING_DOT as DEFAULT_REMOVE_LEADING_DOT def get_single_repo(repos): |