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 77444fd commit 63882a2
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions mdto/mdto.py
Original file line number Diff line number Diff line change
Expand Up @@ -776,19 +776,29 @@ def bestand_from_file(
checksum = create_checksum(file)

# file or file path?
if isinstance(isrepresentatievan, (str, Path)) or hasattr(isrepresentatievan, "read"):
if isinstance(isrepresentatievan, (str, Path)) or hasattr(
isrepresentatievan, "read"
):
informatieobject = _process_file(isrepresentatievan)
verwijzing_informatieobject = detect_verwijzing(informatieobject)
informatieobject.close()
elif isinstance(isrepresentatievan, VerwijzingGegevens):
verwijzing_informatieobject = isrepresentatievan
else:
raise TypeError("isrepresentatievan must either be a path/file, or a VerwijzingGegevens object.")
raise TypeError(
"isrepresentatievan must either be a path/file, or a VerwijzingGegevens object."
)

file.close()

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


Expand Down

0 comments on commit 63882a2

Please sign in to comment.