Skip to content

Commit

Permalink
Fix typo in return value from README (fixes ossf#652)
Browse files Browse the repository at this point in the history
The same code is in both the README and compliant03.py. This change fixes the typo in compliant03.py.

Signed-off-by: Michael Scovetta <michael.scovetta@gmail.com>
  • Loading branch information
scovetta authored Dec 23, 2024
1 parent a9350ee commit 505d4f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def map_threads(x):
for res in result_gen:
ret.append(res)
invalid_arg += 1
return res
return ret
except ValueError as e:
# handle exception...
raise ValueError(
Expand Down

0 comments on commit 505d4f9

Please sign in to comment.