Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
itajaja committed Sep 24, 2019
1 parent f864ffc commit cf2a11d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions black.py
Expand Up @@ -3454,11 +3454,11 @@ def gen_python_files(
def gen_python_files_in_dir(
path: Path,
root: Path,
include: Pattern[str],
include: Optional[Pattern[str]],
exclude: Pattern[str],
report: "Report",
) -> Iterator[Path]:
return gen_python_files(path.iterdir())
return gen_python_files(path.iterdir(), root, include, exclude, report)



Expand Down

0 comments on commit cf2a11d

Please sign in to comment.