There was an error while loading. Please reload this page.
2 parents ea24401 + eaa27dc commit 5a3dad4Copy full SHA for 5a3dad4
2 files changed
jasper/mic.py
@@ -8,9 +8,9 @@
8
import threading
9
import math
10
import sys
11
-if sys.version_info < (3, 0):
+if sys.version_info < (3, 0): # NOQA
12
import Queue as queue
13
-else:
+else: # NOQA
14
import queue
15
16
from . import alteration
jasper/pluginstore.py
@@ -4,9 +4,9 @@
4
import imp
5
import inspect
6
7
import ConfigParser as configparser
import configparser
from . import i18n
0 commit comments