Print a separate message when there are no inputs given (#999)

Fixes #886.
This commit is contained in:
Rishikesh Jha 2019-09-04 17:21:33 +05:30 committed by Zsolt Dollenstein
parent c4d2db4323
commit ae5588cf07
2 changed files with 14 additions and 2 deletions

3
.gitignore vendored
View File

@ -8,4 +8,5 @@ __pycache__
black.egg-info
build/
dist/
pip-wheel-metadata/
pip-wheel-metadata/
.idea

View File

@ -437,6 +437,7 @@ def main(
report = Report(check=check, quiet=quiet, verbose=verbose)
root = find_project_root(src)
sources: Set[Path] = set()
path_empty(src, quiet, verbose, ctx)
for s in src:
p = Path(s)
if p.is_dir():
@ -450,7 +451,7 @@ def main(
err(f"invalid path: {s}")
if len(sources) == 0:
if verbose or not quiet:
out("No paths given. Nothing to do 😴")
out("No Python files are present to be formatted. Nothing to do 😴")
ctx.exit(0)
if len(sources) == 1:
@ -472,6 +473,16 @@ def main(
ctx.exit(report.return_code)
def path_empty(src: Tuple[str], quiet: bool, verbose: bool, ctx: click.Context) -> None:
"""
Exit if there is no `src` provided for formatting
"""
if not src:
if verbose or not quiet:
out("No Path provided. Nothing to do 😴")
ctx.exit(0)
def reformat_one(
src: Path, fast: bool, write_back: WriteBack, mode: FileMode, report: "Report"
) -> None: