Skip to content

Commit

Permalink
fix CustomersAuth
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-sinina committed Dec 3, 2024
1 parent b9c3a70 commit 3530662
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions yeti_switch_api/orm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .invoice_terminated_destination import InvoiceTerminatedDestination # noqa: F401
from .invoice_terminated_network import InvoiceTerminatedNetwork # noqa: F401

from .customer_auth import CustomersAuth # noqa: F401
from .customers_auth import CustomersAuth # noqa: F401
from .dialpeer import Dialpeer # noqa: F401
from .numberlist import Numberlist # noqa: F401
from .numberlist_item import NumberlistItem # noqa: F401
Expand All @@ -23,4 +23,3 @@
from .country import Country # noqa: F401
from .network import Network # noqa: F401
from .network_type import NetworkType # noqa: F401

4 changes: 2 additions & 2 deletions yeti_switch_api/orm/orm_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .invoice_terminated_destination import InvoiceTerminatedDestination
from .invoice_terminated_network import InvoiceTerminatedNetwork

from .customer_auth import CustomersAuth
from .customers_auth import CustomersAuth
from .dialpeer import Dialpeer
from .numberlist import Numberlist
from .numberlist_item import NumberlistItem
Expand Down Expand Up @@ -51,7 +51,7 @@ def __register_models(cls):
cls.__register_model(InvoiceOriginatedNetwork)
cls.__register_model(InvoiceTerminatedDestination)
cls.__register_model(InvoiceTerminatedNetwork)
cls.__register_model(CustomerAuth)
cls.__register_model(CustomersAuth)
cls.__register_model(Dialpeer)
cls.__register_model(Numberlist)
cls.__register_model(NumberlistItem)
Expand Down

0 comments on commit 3530662

Please sign in to comment.