Skip to content

Commit eb1be1d

Browse files
committed
lint
1 parent 2ca58a6 commit eb1be1d

File tree

1 file changed

+3
-1
lines changed
  • request-processor/src/application/core

1 file changed

+3
-1
lines changed

request-processor/src/application/core/utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,9 @@ def validate_source(
396396
if not documentation_url:
397397
logger.warning("No documentation URL provided")
398398

399-
safe_documentation_url = _quote_url_if_comma(documentation_url) if documentation_url else ""
399+
safe_documentation_url = (
400+
_quote_url_if_comma(documentation_url) if documentation_url else ""
401+
)
400402

401403
if not start_date:
402404
start_date = datetime.now().strftime("%Y-%m-%d")

0 commit comments

Comments
 (0)