Skip to content

Commit a534f60

Browse files
committed
Formatted the codebase.
1 parent 8ec79a5 commit a534f60

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

elementary_tutorial/workflows/generate_data.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,11 @@ def generate_signups_data():
137137
[
138138
customer[0], # SIGNUP ID
139139
customer[0], # CUSTOMER ID
140-
f"{customer[1]}{customer[2].lower()}{customer[0]}@example.com"
141-
if random.randint(0, 30)
142-
else "", # USER EMAIL
140+
(
141+
f"{customer[1]}{customer[2].lower()}{customer[0]}@example.com"
142+
if random.randint(0, 30)
143+
else ""
144+
), # USER EMAIL
143145
hashlib.sha256(datetime.now().isoformat().encode()).hexdigest(),
144146
customer_min_order_time_map[customer[0]],
145147
]

0 commit comments

Comments
 (0)