Skip to content

Commit

Permalink
fix: correct var name
Browse files Browse the repository at this point in the history
  • Loading branch information
rien333 committed Dec 17, 2024
1 parent fe4cedf commit 4cbbeb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mdto/mdto.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def validate(self):
super().validate()
if len(self.verwijzingNaam) > MDTO_MAX_NAAM_LENGTH:
logging.warning(
f"VerwijzingGegevens.verwijzingNaam: {self.naam} exceeds maximum length of {MDTO_MAX_NAAM_LENGTH}"
f"VerwijzingGegevens.verwijzingNaam: {self.verwijzingNaam} exceeds maximum length of {MDTO_MAX_NAAM_LENGTH}"
)

verwijzingNaam: str
Expand Down

0 comments on commit 4cbbeb8

Please sign in to comment.