Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
soapy1 committed Nov 8, 2024
1 parent 26394f4 commit b847d5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class PluginRegistry():

def __new__(cls):
if cls._instance is None:
cls._instance = super(PluginRegistry, cls).__new__(cls)
cls._instance = super().__new__(cls)
return cls._instance

def __init__(self):
Expand Down

0 comments on commit b847d5d

Please sign in to comment.