Skip to content

Commit

Permalink
style: Reformat the source code in main.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkapfham committed Jul 25, 2023
1 parent 27262a0 commit 9ecd7d8
Showing 1 changed file with 14 additions and 18 deletions.
32 changes: 14 additions & 18 deletions chasten/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@

import sys
from pathlib import Path
from typing import Any
from typing import Dict
from typing import List
from typing import Tuple
from typing import Union
from typing import Any, Dict, List, Tuple, Union

import typer
import yaml
Expand All @@ -16,16 +12,18 @@
from trogon import Trogon # type: ignore
from typer.main import get_group

from chasten import configuration
from chasten import constants
from chasten import debug
from chasten import enumerations
from chasten import filesystem
from chasten import output
from chasten import process
from chasten import server
from chasten import util
from chasten import validate
from chasten import (
configuration,
constants,
debug,
enumerations,
filesystem,
output,
process,
server,
util,
validate,
)

# create a Typer object to support the command-line interface
cli = typer.Typer()
Expand Down Expand Up @@ -380,9 +378,7 @@ def analyze( # noqa: PLR0913
# create the list of directories
valid_directories = [directory]
# output the list of directories subject to checking
output.console.print(
f":sparkles: Analyzing Python source code in:\n{directory}"
)
output.console.print(f":sparkles: Analyzing Python source code in:\n{directory}")
# output the number of checks that will be performed
output.console.print()
output.console.print(
Expand Down

0 comments on commit 9ecd7d8

Please sign in to comment.