2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-16 10:05:21 +00:00

style: Re-order import statement

This commit is contained in:
Gavin D'souza 2022-01-04 17:08:17 +05:30
parent e3b9c2a239
commit 23b37a3606

View File

@ -30,14 +30,13 @@ from bench.utils.bench import (
) )
from bench.utils.render import step from bench.utils.render import step
logger = logging.getLogger(bench.PROJECT_NAME)
if typing.TYPE_CHECKING: if typing.TYPE_CHECKING:
from bench.bench import Bench from bench.bench import Bench
logger = logging.getLogger(bench.PROJECT_NAME)
class AppMeta: class AppMeta:
def __init__(self, name: str, branch: str = None, to_clone: bool = True): def __init__(self, name: str, branch: str = None, to_clone: bool = True):
""" """