Remove unused import

This commit is contained in:
VirtuBox
2019-07-29 12:19:54 +02:00
parent 7d1aec8117
commit 4eb327e79b
5 changed files with 0 additions and 9 deletions

View File

@@ -1,6 +1,5 @@
from cement.core.controller import CementBaseController, expose from cement.core.controller import CementBaseController, expose
from cement.core import handler, hook from cement.core import handler, hook
from wo.core.aptget import WOAptGet
from wo.core.shellexec import WOShellExec from wo.core.shellexec import WOShellExec
from wo.core.variables import WOVariables from wo.core.variables import WOVariables
from wo.core.logging import Log from wo.core.logging import Log

View File

@@ -12,7 +12,6 @@ from wo.cli.plugins.sitedb import *
from wo.core.git import WOGit from wo.core.git import WOGit
from subprocess import Popen from subprocess import Popen
from wo.core.nginxhashbucket import hashbucket from wo.core.nginxhashbucket import hashbucket
import sys
import os import os
import glob import glob
import subprocess import subprocess

View File

@@ -1,13 +1,8 @@
from sqlalchemy import Column, DateTime, String, Integer, Boolean
from sqlalchemy import ForeignKey, func
from sqlalchemy.orm import relationship, backref
from sqlalchemy.ext.declarative import declarative_base
from wo.core.logging import Log from wo.core.logging import Log
from wo.core.database import db_session from wo.core.database import db_session
from wo.cli.plugins.models import SiteDB from wo.cli.plugins.models import SiteDB
def addNewSite(self, site, stype, cache, path, def addNewSite(self, site, stype, cache, path,
enabled=True, ssl=False, fs='ext4', db='mysql', enabled=True, ssl=False, fs='ext4', db='mysql',
db_name=None, db_user=None, db_password=None, db_name=None, db_user=None, db_password=None,

View File

@@ -9,7 +9,6 @@ from wo.core.fileutils import WOFileUtils
from wo.core.shellexec import WOShellExec from wo.core.shellexec import WOShellExec
from wo.core.extract import WOExtract from wo.core.extract import WOExtract
from wo.core.download import WODownload from wo.core.download import WODownload
import configparser
import os import os
import shutil import shutil

View File

@@ -3,7 +3,6 @@ from wo.core.fileutils import WOFileUtils
import math import math
import os import os
import fileinput import fileinput
import re
import subprocess import subprocess