2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-24 04:59:01 +00:00

style: removed unused imports

This commit is contained in:
Gavin D'souza 2020-03-02 19:24:41 +05:30
parent b672466dad
commit 9b5e1c9fdc
4 changed files with 1 additions and 4 deletions

View File

@ -1,6 +1,6 @@
import click import click
import os, sys, logging, json, pwd, subprocess import os, sys, logging, json, pwd, subprocess
from bench.utils import is_root, PatchError, drop_privileges, get_env_cmd, get_cmd_output, get_frappe, log, is_bench_directory, find_parent_bench from bench.utils import is_root, PatchError, drop_privileges, get_env_cmd, get_cmd_output, get_frappe, log, find_parent_bench
from bench.app import get_apps from bench.app import get_apps
from bench.config.common_site_config import get_config from bench.config.common_site_config import get_config
from bench.commands import bench_command from bench.commands import bench_command

View File

@ -1,7 +1,6 @@
# imports - standard imports # imports - standard imports
import os import os
import sys import sys
import json
# imports - module imports # imports - module imports
from bench.utils import exec_cmd from bench.utils import exec_cmd

View File

@ -1,6 +1,5 @@
# imports - standard imports # imports - standard imports
import os import os
import sys
# imports - third party imports # imports - third party imports
import click import click

View File

@ -1,5 +1,4 @@
# imports - standard imports # imports - standard imports
import copy
import os import os
import sys import sys