Skip to content

Commit

Permalink
fix: make Marktlokation.bilanzierungsmethode nullable (#158)
Browse files Browse the repository at this point in the history
Co-authored-by: Konstantin <konstantin.klein+github@hochfrequenz.de>
  • Loading branch information
hf-kklein and Konstantin authored Oct 29, 2024
1 parent 39692ac commit 40ac456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tmdsclient/models/marktlokation.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Bo4eMarktlokationWithNetznutzungsabrechnungsdaten(Bo4eMarktlokation):

model_config = ConfigDict(extra="allow", populate_by_name=True)
netznutzungsabrechnungsdaten: list[_Netznutzungsabrechnungsdaten] | None = Field(default=None)
bilanzierungsmethode: Bilanzierungsmethode # type:ignore[assignment]
bilanzierungsmethode: Bilanzierungsmethode | None = None # type:ignore[assignment]


class Marktlokation(BaseModel):
Expand Down

0 comments on commit 40ac456

Please sign in to comment.