We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fa5996 commit 5716974Copy full SHA for 5716974
contentctl/input/director.py
@@ -338,7 +338,9 @@ def createSecurityContent(
338
for err in error.errors():
339
error_msg = err.get("msg", "")
340
if "https://errors.pydantic.dev" in error_msg:
341
- continue
+ # Unfortunately, this is a catch-all for untyped errors. We will still need to emit this
342
+ # It will fall through the if/else statement below to the else condition.
343
+ pass
344
345
# Clean error categorization
346
if "Field required" in error_msg:
0 commit comments