Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
allthatilk committed Jun 23, 2017
1 parent 20785f7 commit 4d9c7a4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions statsrunner/loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import json
import sys
import traceback
import decimal
import argparse
import statsrunner.shared
import statsrunner.aggregate
from statsrunner.common import decimal_default
Expand All @@ -28,7 +26,7 @@ def call_stats(this_stats, args):
def process_file((inputfile, output_dir, folder, xmlfile, args)):
import importlib
stats_module = importlib.import_module(args.stats_module)

if args.verbose_loop:
try: os.makedirs(os.path.join(output_dir,'loop',folder))
except OSError: pass
Expand Down Expand Up @@ -122,4 +120,3 @@ def loop(args):
pool.map(process_file, files)
else:
map(process_file, files)

0 comments on commit 4d9c7a4

Please sign in to comment.