Skip to content

Commit

Permalink
Adjust constant name in test
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Aug 4, 2024
1 parent 8afd218 commit 5a40ce2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pylint: disable=missing-module-docstring

dictionary = {'0': 0}
f_string = f'{dictionary["0"]}'
F_STRING = f'{dictionary["0"]}'
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

dictionary = {'0': 0}
# quotes are inconsistent when targetting Python 3.12 (use single quotes)
f_string = f'{dictionary["0"]}' # [inconsistent-quotes]
F_STRING = f'{dictionary["0"]}' # [inconsistent-quotes]
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

dictionary = {'0': 0}
# quotes are consistent when targetting 3.11 and earlier (cannot use single quotes here)
f_string = f'{dictionary["0"]}'
F_STRING = f'{dictionary["0"]}'

0 comments on commit 5a40ce2

Please sign in to comment.