Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,4 @@ jobs:

- name: Check tests/ with basedpyright
run: |
basedpyright tests/
basedpyright --level=warning --stats tests/
4 changes: 2 additions & 2 deletions src/docstub-stubs/_cli_help.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import logging
import os
import re
from collections.abc import Sequence
from collections.abc import Iterable
from typing import IO, Any, ClassVar

import click
Expand Down Expand Up @@ -32,7 +32,7 @@ class HelpFormatter(click.formatting.HelpFormatter):
def __init__(self, *args: Any, **kwargs: Any) -> None: ...
def write_dl(
self,
rows: Sequence[tuple[str, str]],
rows: Iterable[tuple[str, str]],
*args: Any,
**kwargs: Any,
) -> None: ...
Expand Down
2 changes: 1 addition & 1 deletion src/docstub/_cli_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def write_dl(

Parameters
----------
rows : Sequence[tuple[str, str]]
rows : Iterable[tuple[str, str]]
*args, **kwargs : Any
"""
if not rows[0][0].strip().startswith("-"):
Expand Down
Loading