Skip to content

Commit

Permalink
fix (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
adriandavila authored Dec 28, 2023
1 parent 10b57e7 commit bd7cbea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extras/ortoa/data_generation/generators/value_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def generate_value(self):
while remaining > 0:
random_char = chr(random.randint(0, 25) + ord("a"))
generated += random_char * min(25, remaining)
remaining -= 10
remaining -= 25

return generated

Expand Down

0 comments on commit bd7cbea

Please sign in to comment.