Skip to content

Commit

Permalink
legacy: fix type (float to int) of size attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
lnielsen committed Sep 18, 2023
1 parent 1519f7f commit 67a2551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/zenodo_rdm/legacy/serializers/schemas/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class LegacyFilesRESTSchema(Schema):

version_id = SanitizedUnicode()
key = SanitizedUnicode()
size = fields.Number()
size = fields.Integer()
mimetype = SanitizedUnicode()
checksum = SanitizedUnicode()

Expand Down

0 comments on commit 67a2551

Please sign in to comment.