Commit c1cad6c5 authored by Adrian Pino's avatar Adrian Pino
Browse files

Add default value to scs_as_id to avoid invocation error. Satisfy linter

parent 3da8ba19
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -2,10 +2,11 @@
from typing import Dict

from pydantic import ValidationError

from src import logger
from src.network.core.network_interface import NetworkManagementInterface, build_flows
from ...core import common
from ...core import schemas

from ...core import common, schemas

log = logger.get_logger(__name__)

@@ -24,7 +25,8 @@ class NetworkManager(NetworkManagementInterface):
             3GPP Monitoring Event API exposed Open5GS NEF.
    """

    def __init__(self, base_url: str, scs_as_id: str):
    # TODO: Warning! "scs_as_is" is defaulted to None.
    def __init__(self, base_url: str, scs_as_id: str = None):
        """
        Initializes the Open5GS Client.
        """