Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kellerza committed Oct 3, 2023
1 parent 57b8ac1 commit 7e76c65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion aiohttp_msal/msal_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7e76c65

Please sign in to comment.