Browse Source

Fix py3flake8 problems

opensearch
nir0s 6 years ago
parent
commit
91f61ad8b1
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      logzio/handler.py

+ 3
- 2
logzio/handler.py View File

@ -39,8 +39,9 @@ class LogzioHandler(logging.Handler):
'processName', 'relativeCreated', 'thread', 'threadName')
if sys.version_info < (3, 0):
var_type = (basestring, bool, dict, float,
int, long, list, type(None))
# long and basestring don't exist in py3 so, NOQA
var_type = (basestring, bool, dict, float, # NOQA
int, long, list, type(None)) # NOQA
else:
var_type = (str, bool, dict, float, int, list, type(None))


Loading…
Cancel
Save