Skip to content

Commit

Permalink
small adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Jan 18, 2021
1 parent 0de91a2 commit 2109d95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deep_daze/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def train(
)

if imagine.filename.exists():
answer = input('Imagined image already exists, do you want to overwrite?').lower()
answer = input('Imagined image already exists, do you want to overwrite? (y/n) ').lower()
if answer not in ('yes', 'y'):
exit()

Expand Down
2 changes: 1 addition & 1 deletion deep_daze/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.14'
__version__ = '0.1.15'

0 comments on commit 2109d95

Please sign in to comment.