diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-05 20:10:24 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-05 20:10:24 -0500 |
| commit | 78444f4c06df6a634fa67dd99ee7c07b6b633d9e (patch) | |
| tree | 4651930bc1ec5449e408c347b2d660522f8ac9e4 /tests/test_data.py | |
| parent | d4339ee90c3146f370d572cbb1b9ab9907daafad (diff) | |
| download | python-coveragepy-git-78444f4c06df6a634fa67dd99ee7c07b6b633d9e.tar.gz | |
style: use good style for annotated defaults parameters
Diffstat (limited to 'tests/test_data.py')
| -rw-r--r-- | tests/test_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_data.py b/tests/test_data.py index 8ed4f842..ab4e03f7 100644 --- a/tests/test_data.py +++ b/tests/test_data.py @@ -88,7 +88,7 @@ TCoverageData = Callable[..., CoverageData] def assert_line_counts( covdata: CoverageData, counts: Mapping[str, int], - fullpath: bool=False, + fullpath: bool = False, ) -> None: """Check that the line_counts of `covdata` is `counts`.""" assert line_counts(covdata, fullpath) == counts |
