Skip to content

Commit

Permalink
Remove blank lines from imports
Browse files Browse the repository at this point in the history
While isort and ruff mostly agree, ruff won't remove blank lines.
  • Loading branch information
corrylc committed Apr 22, 2024
1 parent d499d62 commit 3136aed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions global_helpers/panther_greynoise_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
from typing import Union

from dateutil import parser
from panther_core import PantherEvent

from panther_base_helpers import deep_get
from panther_core import PantherEvent
from panther_lookuptable_helpers import LookupTableMatches


Expand Down
3 changes: 1 addition & 2 deletions global_helpers/panther_lookuptable_helpers.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
from collections.abc import Mapping, Sequence
from typing import Optional, Union

from panther_core import PantherEvent

from panther_base_helpers import deep_get
from panther_core import PantherEvent

ENRICHMENT_KEY = "p_enrichment"
IGNORE_ENRICHMENTS = "p_any_"
Expand Down

0 comments on commit 3136aed

Please sign in to comment.