Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Commit

Permalink
ignore that flake8 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
arnisoph committed Jan 17, 2016
1 parent 102f033 commit 02fa8fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tabellarius/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ def create_logger(program_name, config=None):

@staticmethod
def natural_sort(l):
convert = lambda text: int(text) if text.isdigit() else text.lower()
alphanum_key = lambda key: [convert(c) for c in re.split('([0-9]+)', key)]
convert = lambda text: int(text) if text.isdigit() else text.lower() # noqa
alphanum_key = lambda key: [convert(c) for c in re.split('([0-9]+)', key)] # noqa
return sorted(l, key=alphanum_key)

@staticmethod
Expand Down
2 changes: 1 addition & 1 deletion tabellarius/tabellarius.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from mail_filter import MailFilter
from misc import ConfigParser, Helper

__version__ = '0.9.1'
__version__ = '0.9.2'


def main():
Expand Down

0 comments on commit 02fa8fd

Please sign in to comment.