Skip to content

Commit

Permalink
code quality fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
KissPeter committed Sep 13, 2018
1 parent 931a871 commit bbb0ccd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import json
import logging
import signal
import tempfile

if sys.version_info[:2] == (2, 7):
from kitty.interfaces import WebInterface
Expand Down Expand Up @@ -71,7 +72,7 @@ def signal_handler(**kwargs):
required=False,
help='Directory where error reports will be saved, default: /tmp/',
dest='report_dir',
default='/tmp/')
default=tempfile.mkdtemp)
parser.add_argument('--level',
type=int,
required=False,
Expand Down
4 changes: 2 additions & 2 deletions test/test.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from __future__ import print_function
import pytest

import json

from test_application import app
from utils import get_test_server_pid
from fuzzer import Fuzzer


class BaseTestClass(object):
Expand Down

0 comments on commit bbb0ccd

Please sign in to comment.