Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9995993

Browse files
committed
Ignore uncovered code
1 parent 8c6a269 commit 9995993

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

auth0/v3/management/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
if is_async_available():
3232
from .async_auth0 import AsyncAuth0 as Auth0
33-
else:
33+
else: # pragma: no cover
3434
from .auth0 import Auth0
3535

3636
__all__ = (

auth0/v3/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def is_async_available():
99
import aiohttp
1010

1111
return True
12-
except ImportError:
12+
except ImportError: # pragma: no cover
1313
pass
1414

1515
return False

0 commit comments

Comments
 (0)