Skip to content

Commit c9a0e9a

Browse files
committed
format
1 parent 89f0696 commit c9a0e9a

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

tiralib/tiramisu/function_server.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -213,13 +213,12 @@ def run(
213213
"""Run the server code."""
214214
if not BaseConfig.base_config:
215215
raise ValueError("BaseConfig not initialized")
216-
assert (
217-
operation
218-
in [
219-
"execution",
220-
"legality",
221-
]
222-
), f"Invalid operation {operation}. Valid operations are: execution, legality, annotations" # noqa: E501
216+
assert operation in [
217+
"execution",
218+
"legality",
219+
], (
220+
f"Invalid operation {operation}. Valid operations are: execution, legality, annotations"
221+
) # noqa: E501
223222

224223
env_vars = " && ".join(
225224
[

0 commit comments

Comments
 (0)