Clean up and fix whitespace
This commit is contained in:
parent
46b913941d
commit
189282a3f6
6 changed files with 21 additions and 20 deletions
|
|
@ -2,12 +2,13 @@ import argparse
|
||||||
import logging
|
import logging
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
from .config import *
|
from .config import *
|
||||||
|
from .explore import *
|
||||||
from .known_files import *
|
from .known_files import *
|
||||||
from .process import *
|
from .process import *
|
||||||
from .util import *
|
|
||||||
from .explore import *
|
|
||||||
from .prompt import *
|
from .prompt import *
|
||||||
|
from .util import *
|
||||||
|
|
||||||
#logging.basicConfig(level=logging.DEBUG, style="{", format="{levelname:>7}: {message}")
|
#logging.basicConfig(level=logging.DEBUG, style="{", format="{levelname:>7}: {message}")
|
||||||
logging.basicConfig(level=logging.INFO, style="{", format="{levelname:>7}: {message}")
|
logging.basicConfig(level=logging.INFO, style="{", format="{levelname:>7}: {message}")
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ managing local variables.
|
||||||
|
|
||||||
import copy
|
import copy
|
||||||
import types
|
import types
|
||||||
from typing import Dict, Any
|
from typing import Any, Dict
|
||||||
|
|
||||||
__all__ = ["copy_local_variables"]
|
__all__ = ["copy_local_variables"]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
|
import logging
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Dict, List, Optional
|
from typing import Dict, List, Optional
|
||||||
import logging
|
|
||||||
|
|
||||||
from .util import *
|
|
||||||
from .colors import *
|
from .colors import *
|
||||||
|
from .util import *
|
||||||
|
|
||||||
__all__ = ["FileInfo", "find_config_files"]
|
__all__ = ["FileInfo", "find_config_files"]
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue