Skip to content

Commit

Permalink
removed int for w and h
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardKoschicek committed Sep 26, 2023
1 parent ca93f6b commit f8db20f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions openatlas/api/endpoints/iiif.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def getManifest(id_):
"@id": "http://251a31df-761d-46df-85c3-66cb967b8a67",
"@type": "sc:Canvas",
"label": entity.name,
"height": int(image_api['height']),
"width": int(image_api['width']),
"height": image_api['height'],
"width": image_api['width'],
"description": {
"@value": entity.description,
"@language": "en"},
Expand All @@ -57,8 +57,8 @@ def getManifest(id_):
"@id": iiif_id,
"profile": image_api['profile']
},
"height": int(image_api['height']),
"width": int(image_api['width'])},
"height": image_api['height'],
"width": image_api['width']},
"on": "http://251a31df-761d-46df-85c3-66cb967b8a67"}],
"related": ""}]}],
"structures": []}
Expand Down

0 comments on commit f8db20f

Please sign in to comment.