diff --git a/setup.cfg b/setup.cfg index c5e2f978..ef1448f6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -39,7 +39,8 @@ inline-quotes = single extend-ignore = SFS3, # String literal formatting using f-string D107, # Missing docstring in __init__ DUO103, # Insecure use of "pickle" or "cPickle" - VNE001 # Single letter variable names are not allowed + VNE001, # Single letter variable names are not allowed + W503 # Line break occurred before a binary operator [pydocstyle] convention = google diff --git a/tests/integration/reports/multi_table/_properties/test_inter_table_trends.py b/tests/integration/reports/multi_table/_properties/test_inter_table_trends.py index 7dfe246f..ba87fa25 100644 --- a/tests/integration/reports/multi_table/_properties/test_inter_table_trends.py +++ b/tests/integration/reports/multi_table/_properties/test_inter_table_trends.py @@ -27,7 +27,7 @@ def test_with_progress_bar(self): column_pair_trends = InterTableTrends() num_iter = sum( len(metadata['tables'][relationship['parent_table_name']]['columns']) - * len(metadata['tables'][relationship['child_table_name']]['columns']) # noqa: W503 + * len(metadata['tables'][relationship['child_table_name']]['columns']) for relationship in metadata['relationships'] )