Skip to content

Commit d40c724

Browse files
committed
lint fix
1 parent 83a6683 commit d40c724

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

singlestoredb/apps/_python_udfs.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
# Maximum number of UDFs allowed
1717
MAX_UDFS_LIMIT = 10
1818

19+
1920
async def run_udf_app(
2021
log_level: str = 'error',
2122
kill_existing_app_server: bool = True,
@@ -51,7 +52,9 @@ async def run_udf_app(
5152
if not app.endpoints:
5253
raise ValueError("You must define at least one function.")
5354
if len(app.endpoints) > MAX_UDFS_LIMIT:
54-
raise ValueError(f"You can only define a maximum of {MAX_UDFS_LIMIT} functions.")
55+
raise ValueError(
56+
f"You can only define a maximum of {MAX_UDFS_LIMIT} functions."
57+
)
5558

5659
config = uvicorn.Config(
5760
app,

0 commit comments

Comments
 (0)