Skip to content

Commit

Permalink
Fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
uriyyo committed Jan 6, 2022
1 parent e06f8de commit da1b963
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion starlette/background.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
import typing

if sys.version_info >= (3, 10):
if sys.version_info >= (3, 10): # pragma: no cover
from typing import ParamSpec
else:
from typing_extensions import ParamSpec
Expand Down
2 changes: 1 addition & 1 deletion starlette/concurrency.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import anyio

if sys.version_info >= (3, 10):
if sys.version_info >= (3, 10): # pragma: no cover
from typing import ParamSpec
else:
from typing_extensions import ParamSpec
Expand Down

0 comments on commit da1b963

Please sign in to comment.