Skip to content

Commit

Permalink
[urlscan] Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelHassine committed Nov 24, 2022
1 parent c167132 commit 5bacf1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions external-import/urlscan/src/urlscan/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import logging
from collections import Counter
from pathlib import Path
from typing import Iterator, NamedTuple, Optional
from typing import Iterator, NamedTuple
from urllib.parse import urlparse

import pycti
Expand Down Expand Up @@ -51,13 +51,13 @@ def __init__(self):
"URLSCAN_URL",
["urlscan", "url"],
config,
) # type: Optional[str]
)

urlscan_api_key = get_config_variable(
"URLSCAN_API_KEY",
["urlscan", "api_key"],
config,
) # type: Optional[str]
)

self._create_indicators = get_config_variable(
"URLSCAN_CREATE_INDICATORS",
Expand Down

0 comments on commit 5bacf1c

Please sign in to comment.