Minor optimization: Removal of unecessary module

This commit is contained in:
bobokun 2021-12-01 10:53:03 -05:00
parent eac74de9e4
commit fef08cbeae
3 changed files with 4 additions and 4 deletions

View file

@ -17,5 +17,6 @@ config
Dockerfile
venv
.idea
.env
test.py
!config/config.yml.sample

3
.gitignore vendored
View file

@ -7,4 +7,5 @@ __pycache__/
*.yml
.vscode/*
!.github/**
*.svg
*.svg
.env

View file

@ -1,6 +1,6 @@
#!/usr/bin/python3
import argparse, logging, os, sys, time, shutil, urllib3, stat, fnmatch
import argparse, logging, os, sys, time, shutil, stat, fnmatch
from logging.handlers import RotatingFileHandler
from datetime import timedelta,datetime
from collections import Counter
@ -132,8 +132,6 @@ else:
os.makedirs(os.path.join(default_dir, "logs"), exist_ok=True)
urllib3.disable_warnings()
logger = logging.getLogger('qBit Manage')
logging.DRYRUN = 25