Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Correct ruff errors
  • Loading branch information
CaedenPH committed May 17, 2023
commit 9dce568f94fd2e9313a02dd9da7a1b243223f901
2 changes: 1 addition & 1 deletion other/guess_the_number_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def answer(number: int) -> str:
break

print(f"guess the number : {last_numbers[-1]}")
print(f"details : {str(last_numbers)}")
print(f"details : {last_numbers!s}")


def main() -> None:
Expand Down