Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mgorsk1 committed Nov 27, 2024
1 parent 127850a commit 9135c0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def download_dbt_files(
"""
Method to download the files from sources
"""
for ( # pylint: disable=too-many-nested-blocks
for ( # pylint: disable=too-many-nested-blocks, too-many-locals, too-many-branches
key,
blobs,
) in blob_grouped_by_directory.items():
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def add_dbt_sources(
key, manifest_node, manifest_entities, dbt_objects
)

# pylint: disable=too-many-locals, too-many-branches
# pylint: disable=too-many-locals, too-many-branches, too-many-statements
def yield_data_models(
self, dbt_objects: DbtObjects
) -> Iterable[Either[DataModelLink]]:
Expand Down

0 comments on commit 9135c0d

Please sign in to comment.