Skip to content

Commit

Permalink
Merge pull request #419 from vojtechtrefny/main_pylint-init-ignore
Browse files Browse the repository at this point in the history
pylint: Ignore attribute defined outside __init__ in setup.py
  • Loading branch information
vojtechtrefny authored Nov 14, 2023
2 parents 839841f + 0e9ba70 commit faa5b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class blivet_gui_sdist(sdist):

def initialize_options(self):
sdist.initialize_options(self)
self.mode = None
self.mode = None # pylint: disable=attribute-defined-outside-init

def finalize_options(self):
sdist.finalize_options(self)
Expand Down

0 comments on commit faa5b43

Please sign in to comment.