From 7e76c65dc291fbd6f2e4facc2e81f5e6ec38270a Mon Sep 17 00:00:00 2001 From: Johann Kellerman Date: Tue, 3 Oct 2023 10:04:43 +0200 Subject: [PATCH] CI --- .github/workflows/ci.yml | 2 +- aiohttp_msal/msal_async.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 20519b2..1d38ab2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -106,7 +106,7 @@ jobs: pip install ".[redis,tests]" pytest --cov=./aiohttp_msal --cov-report=xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} env_vars: PYTHON diff --git a/aiohttp_msal/msal_async.py b/aiohttp_msal/msal_async.py index 8696ee2..0e8e2cc 100644 --- a/aiohttp_msal/msal_async.py +++ b/aiohttp_msal/msal_async.py @@ -104,7 +104,8 @@ def __init__( """Init the class. **save_token_cache** will be called if the token cache changes. Optional. - Not required when the session parameter is an aiohttp_session.Session.""" + Not required when the session parameter is an aiohttp_session.Session. + """ self.session = session if save_cache: self.save_token_cache = save_cache