Skip to content

Commit

Permalink
Merge pull request #486 from andweber/fix_flake8_check
Browse files Browse the repository at this point in the history
fixed flake8 error E402
  • Loading branch information
Holzhaus committed May 3, 2016
2 parents ea24401 + eaa27dc commit 5a3dad4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions jasper/mic.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import threading
import math
import sys
if sys.version_info < (3, 0):
if sys.version_info < (3, 0): # NOQA
import Queue as queue
else:
else: # NOQA
import queue

from . import alteration
Expand Down
4 changes: 2 additions & 2 deletions jasper/pluginstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import imp
import inspect
import sys
if sys.version_info < (3, 0):
if sys.version_info < (3, 0): # NOQA
import ConfigParser as configparser
else:
else: # NOQA
import configparser

from . import i18n
Expand Down

0 comments on commit 5a3dad4

Please sign in to comment.