Skip to content

Commit

Permalink
tbr
Browse files Browse the repository at this point in the history
  • Loading branch information
ebonnal committed Jan 3, 2025
1 parent c3054b2 commit 6504ad8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ jobs:
run: |
python -m pip install -r requirements-dev.txt
python -m coverage run -m unittest
python -m coverage --version
- name: Generate coverage report
run: python -m coverage report --fail-under=100
run: |
python -m coverage --version
python -m coverage report --fail-under=100
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
Expand Down
2 changes: 1 addition & 1 deletion streamable/util/functiontools.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import Any, Callable, Coroutine, Generic, Tuple, Type, TypeVar, overload

T = TypeVar("T")
R = TypeVar("R")
T = TypeVar("T")


class WrappedError(Exception):
Expand Down

0 comments on commit 6504ad8

Please sign in to comment.