Skip to content

Commit

Permalink
style: remove unneeded pylint ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Jun 21, 2024
1 parent 3d55620 commit e5b6fed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oomox_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
"for exporting Base16 themes",
)

class PluginBase(OomoxImportPlugin): # pylint: disable=abstract-method
class PluginBase(OomoxImportPlugin):
pass
else:
class PluginBase(OomoxImportPlugin, OomoxExportPlugin): # type: ignore[no-redef] # pylint: disable=abstract-method
class PluginBase(OomoxImportPlugin, OomoxExportPlugin): # type: ignore[no-redef]
pass


Expand Down

0 comments on commit e5b6fed

Please sign in to comment.