We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fecd647 commit 692760aCopy full SHA for 692760a
2 files changed
pyoverkiz/auth/strategies.py
@@ -251,7 +251,7 @@ async def login(self) -> None:
251
except ImportError as err:
252
raise ImportError(
253
"Nexity authentication requires the 'nexity' extra. "
254
- "Install it with: pip install pyoverkiz[nexity]"
+ 'Install it with: pip install "pyoverkiz[nexity]"'
255
) from err
256
257
loop = asyncio.get_running_loop()
tests/test_auth.py
@@ -15,6 +15,8 @@
15
from aiohttp import ClientSession
16
17
try:
18
+ import boto3 # noqa: F401
19
+ import warrant_lite # noqa: F401
20
from botocore.exceptions import ClientError
21
22
HAS_NEXITY_DEPS = True
0 commit comments