Skip to content

Commit

Permalink
🔈 Consistent handling of yes/no logging (#114)
Browse files Browse the repository at this point in the history
Co-authored-by: Lukas Heumos <[email protected]>
  • Loading branch information
falexwolf and Zethson authored Sep 18, 2024
1 parent 80e5cc6 commit 421b614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bionty/base/dev/_handle_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def _confirm() -> bool:
while answer not in ["y", "n"]:
answer = input(
"Are you sure that you want to reset your local bionty sources?"
" [Y/N]? "
" (y/n) "
).lower()
return answer == "y"

Expand Down

0 comments on commit 421b614

Please sign in to comment.