Skip to content

Commit

Permalink
Flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainCorlay committed May 27, 2020
1 parent a623ee4 commit b75e05f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions voila/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}

__version__ = '%s.%s.%s%s'%(version_info[0], version_info[1], version_info[2],
'' if version_info[3]=='final' else _specifier_[version_info[3]] + str(version_info[4]))
__version__ = '%s.%s.%s%s' % (version_info[0], version_info[1], version_info[2],
'' if version_info[3] == 'final' else _specifier_[version_info[3]] + str(version_info[4]))

0 comments on commit b75e05f

Please sign in to comment.