Skip to content

Commit 1c44e39

Browse files
committed
Fix pyright actions
1 parent f9930d3 commit 1c44e39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/coverage_and_lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: "Type Coverage @ ${{ matrix.python-version }}"
5454
run: |
5555
poetry run pyright
56-
poetry run pyright --ignoreexternal --lib --verifytypes hondana
56+
poetry run pyright --ignoreexternal --lib --verifytypes mystbin
5757
5858
- name: Lint
5959
if: ${{ github.event_name != 'pull_request' }}

mystbin/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class Client:
3939
__slots__ = ("http",)
4040

4141
def __init__(self, *, token: Optional[str] = None, session: Optional[aiohttp.ClientSession] = None) -> None:
42-
self.http = HTTPClient(token=token, session=session)
42+
self.http: HTTPClient = HTTPClient(token=token, session=session)
4343

4444
async def create_paste(
4545
self,

0 commit comments

Comments
 (0)