Skip to content

Commit df2cb87

Browse files
committed
fix: Format with black
1 parent 9822564 commit df2cb87

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

generate_test_data.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
description="Generates n lines of sleep() statements within the specified rang",
88
)
99

10-
parser.add_argument("-n", default=100, type=int, help="Number of lines to generate")
10+
parser.add_argument(
11+
"-n", default=100, type=int, help="Number of lines to generate"
12+
)
1113
parser.add_argument(
1214
"-t",
1315
default="0.5-5",
@@ -27,4 +29,6 @@
2729
if random.random() < false_probability:
2830
print("false")
2931
else:
30-
print("sleep " + str(round(random.uniform(lower_bound, upper_bound), 2)))
32+
print(
33+
"sleep " + str(round(random.uniform(lower_bound, upper_bound), 2))
34+
)

0 commit comments

Comments
 (0)