diff options
author | David Robertson <davidr@element.io> | 2022-04-25 13:32:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 12:32:35 +0000 |
commit | 8bac3e043541003187e9f16598ff54b0327b9a04 (patch) | |
tree | 1f036e32fabc59dcafe0fea5360d5455d84885be /stubs/sortedcontainers/sortedset.pyi | |
parent | Misc. clean-ups to the relations code (#12519) (diff) | |
download | synapse-8bac3e043541003187e9f16598ff54b0327b9a04.tar.xz |
disallow-untyped-defs in `docker` and `stubs` directories (#12528)
Diffstat (limited to 'stubs/sortedcontainers/sortedset.pyi')
-rw-r--r-- | stubs/sortedcontainers/sortedset.pyi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stubs/sortedcontainers/sortedset.pyi b/stubs/sortedcontainers/sortedset.pyi index f9c2908386..43c860f422 100644 --- a/stubs/sortedcontainers/sortedset.pyi +++ b/stubs/sortedcontainers/sortedset.pyi @@ -103,7 +103,7 @@ class SortedSet(MutableSet[_T], Sequence[_T]): self, start: Optional[int] = ..., stop: Optional[int] = ..., - reverse=bool, + reverse: bool = ..., ) -> Iterator[_T]: ... def irange( self, |