Skip to content

Commit

Permalink
Import Optional
Browse files Browse the repository at this point in the history
  • Loading branch information
lord-haffi committed Oct 6, 2023
1 parent 4930488 commit 8802cfc
Show file tree
Hide file tree
Showing 22 changed files with 22 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/bo4e/bo/preisblattkonzessionsabgabe.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Contains PreisblattKonzessionsabgabe class and corresponding marshmallow schema for de-/serialization
"""

from typing import Optional

from bo4e.bo.preisblatt import Preisblatt
from bo4e.enum.botyp import BoTyp
Expand Down
2 changes: 1 addition & 1 deletion src/bo4e/bo/preisblattnetznutzung.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Contains PreisblattNetnutzung class and corresponding marshmallow schema for de-/serialization
"""

from typing import Optional

from bo4e.bo.preisblatt import Preisblatt
from bo4e.enum.bilanzierungsmethode import Bilanzierungsmethode
Expand Down
2 changes: 1 addition & 1 deletion src/bo4e/bo/tarifkosten.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contains Tarifkosten class
and corresponding marshmallow schema for de-/serialization
"""

from typing import Optional

from bo4e.bo.kosten import Kosten
from bo4e.bo.tarifinfo import Tarifinfo
Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/aufabschlagstaffelproort.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""

from decimal import Decimal
from typing import Optional

from bo4e.com.com import COM

Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/betrag.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""

from decimal import Decimal
from typing import Optional

from bo4e.com.com import COM
from bo4e.enum.waehrungscode import Waehrungscode
Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/dienstleistung.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Contains Dienstleistung class
and corresponding marshmallow schema for de-/serialization
"""
from typing import Optional

from bo4e.com.com import COM
from bo4e.enum.dienstleistungstyp import Dienstleistungstyp
Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/externereferenz.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Contains ExterenzeReferenz class
and corresponding marshmallow schema for de-/serialization
"""
from typing import Optional

from bo4e.com.com import COM

Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/geokoordinaten.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
and corresponding marshmallow schema for de-/serialization
"""
from decimal import Decimal
from typing import Optional

from bo4e.com.com import COM

Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/hardware.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Contains Hardware class
and corresponding marshmallow schema for de-/serialization
"""
from typing import Optional

from bo4e.com.com import COM
from bo4e.enum.geraetetyp import Geraetetyp
Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/katasteradresse.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Contains Katasteradresse class
and corresponding marshmallow schema for de-/serialization
"""
from typing import Optional

from bo4e.com.com import COM

Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/kriteriumwert.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Contains KriteriumWert class
and corresponding marshmallow schema for de-/serialization
"""
from typing import Optional

from bo4e.com.com import COM

Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/marktgebietinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Contains Marktgebietinfo class
and corresponding marshmallow schema for de-/serialization
"""
from typing import Optional

from bo4e.com.com import COM

Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/menge.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""

from decimal import Decimal
from typing import Optional

from bo4e.com.com import COM
from bo4e.enum.mengeneinheit import Mengeneinheit
Expand Down
2 changes: 1 addition & 1 deletion src/bo4e/com/regionalepreisgarantie.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contains RegionalePreisgarantie class
and corresponding marshmallow schema for de-/serialization
"""

from typing import Optional

from bo4e.com.preisgarantie import Preisgarantie
from bo4e.com.regionalegueltigkeit import RegionaleGueltigkeit
Expand Down
2 changes: 1 addition & 1 deletion src/bo4e/com/regionalepreisstaffel.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Contains RegionalePreisstaffel class and corresponding marshmallow schema for de-/serialization
"""

from typing import Optional

from bo4e.com.preisstaffel import Preisstaffel
from bo4e.com.regionalegueltigkeit import RegionaleGueltigkeit
Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/regionskriterium.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Contains Regionskriterium class and corresponding marshmallow schema for de-/serialization
"""
from typing import Optional

from bo4e.com.com import COM
from bo4e.enum.gueltigkeitstyp import Gueltigkeitstyp
Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/rufnummer.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Contains Rufnummer class and corresponding marshmallow schema for de-/serialization
"""
from typing import Optional

from bo4e.com.com import COM
from bo4e.enum.rufnummernart import Rufnummernart
Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/sigmoidparameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""

from decimal import Decimal
from typing import Optional

from bo4e.com.com import COM

Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/standorteigenschaftenstrom.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Contains StandorteigenschaftenStrom class
and corresponding marshmallow schema for de-/serialization
"""
from typing import Optional

from bo4e.com.com import COM

Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/steuerbetrag.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""

from decimal import Decimal
from typing import Optional

from bo4e.com.com import COM
from bo4e.enum.steuerkennzeichen import Steuerkennzeichen
Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/tarifpreisstaffelproort.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
and corresponding marshmallow schema for de-/serialization
"""
from decimal import Decimal
from typing import Optional

from bo4e.com.com import COM

Expand Down
1 change: 1 addition & 0 deletions src/bo4e/com/zeitintervall.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Contains Zeitintervall class
and corresponding marshmallow schema for de-/serialization
"""
from typing import Optional

from bo4e.com.com import COM
from bo4e.enum.zeiteinheit import Zeiteinheit
Expand Down

0 comments on commit 8802cfc

Please sign in to comment.