Skip to content

Commit

Permalink
Merge pull request #1150 from vojtechtrefny/3.8-devel_pylint-fixes
Browse files Browse the repository at this point in the history
Ignore new false positives with the latest pylint
  • Loading branch information
vojtechtrefny authored Aug 3, 2023
2 parents 8e0514e + 1575cb0 commit ebc94a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/makebumpver
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ class MakeBumpVer:
f.writelines(top)

f.write("%changelog\n")
today = datetime.date.today()
today = datetime.date.today() # pylint: disable=no-member
stamp = today.strftime("%a %b %d %Y")
f.write("* %s %s <%s> - %s-%s\n" % (stamp, self.gituser, self.gitemail,
newVersion, self.new_release))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class blivet_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 ebc94a6

Please sign in to comment.