Skip to content

Commit

Permalink
Suppress pylint warning in account_summary.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ianhelle committed Apr 2, 2021
1 parent f2307cc commit 58c8e60
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions msticnb/nb/azsent/account/account_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -788,6 +788,7 @@ def _create_host_ip_group(data, host_column, ip_column):
)


# pylint: disable=too-many-branches
def _create_host_entities(data, geoip):
"""Create Host and IP Entities with GeoIP info."""
for row in data.itertuples():
Expand Down Expand Up @@ -818,6 +819,9 @@ def _create_host_entities(data, geoip):
yield host_ent


# pylint: enable=too-many-branches


def _create_aad_account_entity(
account_name: str, acct_activity_df: pd.DataFrame, geoip
) -> entities.Account:
Expand Down

0 comments on commit 58c8e60

Please sign in to comment.