Skip to content

Commit

Permalink
changed integration test variable name to silence linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ashum68 committed Jun 2, 2024
1 parent 2db85c5 commit 000dd72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/test_flight_interface_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ def main() -> int:


if __name__ == "__main__":
main_result = main()
if main_result < 0:
print("error: " + main_result)
result_main = main()
if result_main < 0:
print("error: " + result_main)

print("Done.")

0 comments on commit 000dd72

Please sign in to comment.