Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathfulSpatula committed Jan 16, 2025
1 parent 95ceb76 commit 83cce0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion find_a_factor
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def main():
if argv_len > 8:
batch_size_multiplier = float(sys.argv[8])
if argv_len > 9:
batch_size_variance = float(sys.argv[9])
batch_size_variance = int(sys.argv[9])
if argv_len > 10:
trial_division_level = int(sys.argv[10])

Expand Down

0 comments on commit 83cce0c

Please sign in to comment.