Skip to content

Commit

Permalink
testing linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rebekahrudd committed Dec 5, 2024
1 parent e80bd51 commit 82a1cd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gator/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def get_word_diagnostic(word_count_dictionary, equals_count=constants.markers.In
return paragraph_number_as_word_phrase, filename_for_paragraph_number_details
# --> Case: the equals_count is not invalid, so look "deeply" for the first value
# that is not equal to the provided value stored in equals_count
elif word_count_dictionary and equals_count is not constants.markers.Invalid:
if word_count_dictionary and equals_count is not constants.markers.Invalid:
paragraph_number_details_list = get_first_not_equal_value_deep(
word_count_dictionary, equals_count
)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def test_get_file_diagnostic_deep_exact_deep_dictionary_not_equal():
"input_file_three": input_file_three,
}
found = util.get_file_diagnostic_deep_exact(outer_dictionary, 21)
assert found != {}
assert found


def test_get_file_diagnostic_deep_exact_deep_dictionary_all_equal():
Expand Down

0 comments on commit 82a1cd4

Please sign in to comment.