Unused imports

This commit is contained in:
Lartza 2018-06-18 13:31:57 +03:00
parent 03a1b00e1e
commit e6af06b8dc
3 changed files with 1 additions and 5 deletions

View File

@ -5,7 +5,6 @@ import variables as var
import util import util
from datetime import datetime from datetime import datetime
import os.path import os.path
from os import listdir
import random import random
from werkzeug.utils import secure_filename from werkzeug.utils import secure_filename
import errno import errno

View File

@ -1,7 +1,5 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
from __future__ import unicode_literals
import re
import threading import threading
import time import time
import sys import sys
@ -11,7 +9,6 @@ import audioop
import subprocess as sp import subprocess as sp
import argparse import argparse
import os.path import os.path
from os import listdir
import pymumble.pymumble_py3 as pymumble import pymumble.pymumble_py3 as pymumble
import interface import interface
import variables as var import variables as var

View File

@ -150,4 +150,4 @@ class Dir(object):
for key, val in self.subdirs.items(): for key, val in self.subdirs.items():
val.render_text(ident + 1) val.render_text(ident + 1)
for file in self.files: for file in self.files:
print('{}{}'.format(' ' * ((ident + 1)) * 4, file)) print('{}{}'.format(' ' * (ident + 1) * 4, file))