Skip to content

Commit

Permalink
chore: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rien333 committed Dec 9, 2024
1 parent 9d7aa58 commit d6280da
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions mdto/mdto.py
Original file line number Diff line number Diff line change
Expand Up @@ -753,11 +753,12 @@ def bestand_from_file(
if isinstance(isrepresentatievan, (str, Path)) or hasattr(
isrepresentatievan, "read"
):
informatieobject = helpers.process_file(isrepresentatievan)
informatieobject.close()
informatieobject_file = helpers.process_file(isrepresentatievan)
# Construct verwijzing from informatieobject file
verwijzing_obj = _detect_verwijzing(informatieobject_file)
informatieobject_file.close()
elif isinstance(isrepresentatievan, VerwijzingGegevens):
verwijzing_informatieobject = isrepresentatievan
verwijzing_obj = isrepresentatievan
else:
raise TypeError(
"isrepresentatievan must either be a path/file, or a VerwijzingGegevens object."
Expand All @@ -766,13 +767,7 @@ def bestand_from_file(
file.close()

return Bestand(
identificatie,
naam,
omvang,
bestandsformaat,
checksum,
verwijzing_informatieobject,
url,
identificatie, naam, omvang, bestandsformaat, checksum, verwijzing_obj, url
)


Expand Down

0 comments on commit d6280da

Please sign in to comment.