Skip to content

Commit

Permalink
fix : .keys() calls removed (Otherfiles)
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Dec 30, 2023
1 parent f8d7bed commit 075eaf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
os.path.join(".github", "ISSUE_TEMPLATE", "bug_report.yml"): ISSUE_TEMPLATE_ITEMS,
}

TEST_NUMBER = len(FILES.keys())
TEST_NUMBER = len(FILES)


def print_result(failed=False):
Expand All @@ -58,7 +58,7 @@ def print_result(failed=False):


if __name__ == "__main__":
for file_name in FILES.keys():
for file_name in FILES:
try:
file_content = codecs.open(
file_name, "r", "utf-8", 'ignore').read()
Expand Down

0 comments on commit 075eaf6

Please sign in to comment.