Skip to content

Commit

Permalink
in report.py commented out the global result
Browse files Browse the repository at this point in the history
  • Loading branch information
rebekahrudd committed Dec 5, 2024
1 parent 8efcc71 commit efdfe34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gator/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def decompose_result(result_dictionary):
def reset():
"""Reset the global result dictionary."""
# pylint: disable=global-statement
# global result
global result
result = None


Expand All @@ -57,7 +57,7 @@ def set_result(description, outcome, diagnostic):
def get_result():
"""Return the result dictionary."""
# pylint: disable=global-statement
global result
# global result
return result


Expand Down

0 comments on commit efdfe34

Please sign in to comment.