Skip to content
Snippets Groups Projects
Commit 68577261 authored by Krzysztof Mochocki's avatar Krzysztof Mochocki
Browse files

Remove unused imports

parent d74da9da
No related branches found
No related tags found
1 merge request!251Add and refactor input files for benchmarking
#!/usr/bin/python3 #!/usr/bin/python3
import html
import logging import logging
import os
import sys import sys
from argparse import ArgumentParser from argparse import ArgumentParser
from dataclasses import dataclass from dataclasses import dataclass
...@@ -13,13 +11,13 @@ from re import compile, match ...@@ -13,13 +11,13 @@ from re import compile, match
from shutil import rmtree, copy2 as copy_file from shutil import rmtree, copy2 as copy_file
from subprocess import PIPE, STDOUT, Popen from subprocess import PIPE, STDOUT, Popen
from time import sleep from time import sleep
from typing import Any, Dict, List, Tuple from typing import Dict, List
from urllib.parse import urlencode, urlparse from urllib.parse import urlencode, urlparse
from prettytable import PrettyTable from prettytable import PrettyTable
from requests import post from requests import post
LOG_LEVEL = logging.DEBUG if 'DEBUG' in os.environ else logging.INFO LOG_LEVEL = logging.DEBUG if 'DEBUG' in environ else logging.INFO
LOG_FORMAT = "%(asctime)-15s - %(name)s - %(levelname)s - %(message)s" LOG_FORMAT = "%(asctime)-15s - %(name)s - %(levelname)s - %(message)s"
def configure_logger(): def configure_logger():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment