Skip to content

Commit cfd1c9e

Browse files
committed
lint fix
1 parent d40c724 commit cfd1c9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

singlestoredb/apps/_python_udfs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ async def run_udf_app(
5050
app = Application(url=base_url, app_mode='managed', name_suffix=udf_suffix)
5151

5252
if not app.endpoints:
53-
raise ValueError("You must define at least one function.")
53+
raise ValueError('You must define at least one function.')
5454
if len(app.endpoints) > MAX_UDFS_LIMIT:
5555
raise ValueError(
56-
f"You can only define a maximum of {MAX_UDFS_LIMIT} functions."
56+
f"You can only define a maximum of {MAX_UDFS_LIMIT} functions.",
5757
)
5858

5959
config = uvicorn.Config(

0 commit comments

Comments
 (0)