We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d40c724 commit cfd1c9eCopy full SHA for cfd1c9e
singlestoredb/apps/_python_udfs.py
@@ -50,10 +50,10 @@ async def run_udf_app(
50
app = Application(url=base_url, app_mode='managed', name_suffix=udf_suffix)
51
52
if not app.endpoints:
53
- raise ValueError("You must define at least one function.")
+ raise ValueError('You must define at least one function.')
54
if len(app.endpoints) > MAX_UDFS_LIMIT:
55
raise ValueError(
56
- f"You can only define a maximum of {MAX_UDFS_LIMIT} functions."
+ f"You can only define a maximum of {MAX_UDFS_LIMIT} functions.",
57
)
58
59
config = uvicorn.Config(
0 commit comments