Skip to content

Commit

Permalink
fix: format corection
Browse files Browse the repository at this point in the history
  • Loading branch information
Apfelholz committed Oct 30, 2024
1 parent d3ddebd commit 93a4e46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions generate_test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
"-n", default=100, type=int, help="Number of lines to generate"
)
parser.add_argument(
"-t",
"-t",
default="0.5-5",
help="Range for sleep times, formatted as lower-upper"
help="Range for sleep times, formatted as lower-upper",
)

# Initialisieren der Grenzen und Argumente
args = parser.parse_args()

lower_bound, upper_bound = map(float, args.t.split("-"))
lines = args.n
lines = args.n

# Test erstellen
for i in range(lines):
Expand Down

0 comments on commit 93a4e46

Please sign in to comment.