Skip to content

Commit

Permalink
fix: fixed line in the util.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
rebekahrudd committed Dec 9, 2024
1 parent c555f70 commit 2c702bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gator/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def get_file_diagnostic_deep_exact(file_count_dictionary, value):
file_details = get_first_not_equal_value(file_count_dictionary, value)
# there is some type of exact match in the data set, so extract and return it
# when the bellow code is != pylint fails, when it is 'is not' test cases fail
if file_details is not {} and file_details != (0, 0):
if file_details not in ({}, (0, 0)):
file_name = file_details[0]
file_count = file_details[1][1]
file_name_phrase = (
Expand Down

0 comments on commit 2c702bf

Please sign in to comment.