Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
import socket
from time import sleep
import logging

from typing import Dict

from .base_event_ingestor import EventIngestor

LOGGER = logging.getLogger("pytest-splunk-addon")
Expand All @@ -32,7 +29,7 @@ class SC4SEventIngestor(EventIngestor):
required_configs (dict): Dictionary containing splunk host and sc4s port
"""

def __init__(self, required_configs: Dict[str, str]) -> None:
def __init__(self, required_configs):
self.sc4s_host = required_configs["sc4s_host"]
self.sc4s_port = required_configs["sc4s_port"]

Expand Down
Loading