Skip to content

Commit 96ae2dc

Browse files
author
Oleksandr Bazarnov
committed
fix
1 parent 7a81b3b commit 96ae2dc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

airbyte_cdk/sources/declarative/models/base_model_with_deprecations.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
warnings.formatwarning = (
1515
lambda message, category, *args, **kwargs: f"{category.__name__}: {message}"
1616
)
17+
# ignore the SyntaxWarning in the Airbyte log messages, during the string evaluation
18+
warnings.filterwarnings("ignore", category=SyntaxWarning)
19+
1720

1821
FIELDS_TAG = "__fields__"
1922
DEPRECATED = "deprecated"

0 commit comments

Comments
 (0)