8000 Third-party stubs: enforce CamelCase for type alias names by AlexWaygood · Pull Request #8256 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Third-party stubs: enforce CamelCase for type alias names #8256

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jul 19, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load fi 8000 les.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make pyright happy
  • Loading branch information
AlexWaygood committed Jul 7, 2022
commit e60c1a55ce4d704430956df9e85d7a539936ebc8
2 changes: 1 addition & 1 deletion stubs/SQLAlchemy/sqlalchemy/util/_collections.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class WeakPopulateDict(dict[Any, Any]):

column_set = set
column_dict = dict
ordered_column_set = OrderedSet
ordered_column_set: TypeAlias = OrderedSet[ColumnElement[Any]] # noqa: Y042

def unique_list(seq: Iterable[_T], hashfunc: Callable[[_T], Any] | None = ...) -> list[_T]: ...

Expand Down
0