Skip to content

Commit a4287f9

Browse files
committed
EOL error fix
1 parent f070df4 commit a4287f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/axiomatic/axtract.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,8 @@ def submit_values(_):
288288
# 8) add_req(): Adds a new, blank row to the bottom
289289
# ---------------------------------------------------------------
290290
def add_req(_):
291-
unique_key = (f"req_{len([kk for kk in value_widgets
292-
if kk.startswith('req_')]) + 1}")
291+
unique_key = (f"req_{len([kk for kk in value_widgets if kk.startswith(
292+
'req_')]) + 1}")
293293

294294
variable_dropdown = widgets.Dropdown(
295295
options=variable_names,

0 commit comments

Comments
 (0)