mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-04 12:39:32 +00:00
infra: add print rule to ruff (#16221)
Added noqa for existing prints. Can slowly remove / will prevent more being intro'd
This commit is contained in:
@@ -564,7 +564,7 @@ class ConfluenceLoader(BaseLoader):
|
||||
texts.append(text)
|
||||
except requests.HTTPError as e:
|
||||
if e.response.status_code == 404:
|
||||
print(f"Attachment not found at {absolute_url}")
|
||||
print(f"Attachment not found at {absolute_url}") # noqa: T201
|
||||
continue
|
||||
else:
|
||||
raise
|
||||
|
Reference in New Issue
Block a user