Skip to content
Snippets Groups Projects
Verified Commit 6c1b1db8 authored by Karel van Klink's avatar Karel van Klink :smiley_cat:
Browse files

fix linting errors

parent d9d770dc
No related branches found
No related tags found
1 merge request!59Feature/refactor device to router
Pipeline #83836 passed
"""Module that updates the domain model of {term}`GSO`. Should contain all types of subscriptions."""
from orchestrator.domain import SUBSCRIPTION_MODEL_REGISTRY
from gso.products.product_types.router import Router
from gso.products.product_types.iptrunk import Iptrunk
from gso.products.product_types.router import Router
from gso.products.product_types.site import Site
SUBSCRIPTION_MODEL_REGISTRY.update(
......
......@@ -18,8 +18,8 @@ from orchestrator.workflow import Step, StepList, abort
from pydantic import validator
from gso import settings
from gso.products.product_types.router import RouterProvisioning
from gso.products.product_types.iptrunk import Iptrunk, IptrunkProvisioning
from gso.products.product_types.router import RouterProvisioning
logger = logging.getLogger(__name__)
"""{class}`logging.Logger` instance."""
......
......@@ -9,8 +9,8 @@ from orchestrator.workflows.utils import wrap_create_initial_input_form
from gso.products.product_blocks import PhyPortCapacity
from gso.products.product_blocks.iptrunk import IptrunkType
from gso.products.product_types.router import Router
from gso.products.product_types.iptrunk import IptrunkInactive, IptrunkProvisioning
from gso.products.product_types.router import Router
from gso.services import ipam, provisioning_proxy
from gso.services.provisioning_proxy import pp_interaction
from gso.workflows.utils import customer_selector
......
......@@ -17,7 +17,7 @@ logger = logging.getLogger(__name__)
def initial_input_form_generator(subscription_id: UUIDstr) -> FormGenerator:
subscription = Router.from_subscription(subscription_id)
Router.from_subscription(subscription_id)
class TerminateForm(FormPage):
termination_label: Label = (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment