Skip to content

Commit 8c0df6c

Browse files
authored
Fix argument order in remove_labels method call (#54)
1 parent 63e0d66 commit 8c0df6c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mediux_posters/services/plex/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ def upload_image(
330330
body=stream.read(),
331331
)
332332
if kometa_integration:
333-
self.remove_labels("Overlay", object_id=object_id)
333+
self.remove_labels(object_id, "Overlay")
334334
return True
335335
except ServiceError as err:
336336
LOGGER.error(

0 commit comments

Comments
 (0)