Skip to content

Commit

Permalink
Remove unused arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Miroshnychenko committed Dec 3, 2023
1 parent f2699b8 commit 51f1dc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin.video.external.library/libs/kodi_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ class GettextEmulator:
class LocalizationError(Exception): # pylint: disable=missing-docstring
pass

def __new__(cls, *args, **kwargs):
def __new__(cls):
if cls._instance is None:
cls._instance = super().__new__(cls, *args, **kwargs)
cls._instance = super().__new__(cls)
return cls._instance

def __init__(self):
Expand Down

0 comments on commit 51f1dc4

Please sign in to comment.