mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-06-03 17:31:54 -04:00
Remove unused type-ignores (#14433)
* Remove unused type-ignores Oversights in #14427 and #14429. * Changelog
This commit is contained in:
parent
fb66fae84b
commit
2cc592584a
3 changed files with 8 additions and 6 deletions
|
@ -45,9 +45,12 @@ class _EventSourcesInner:
|
|||
class EventSources:
|
||||
def __init__(self, hs: "HomeServer"):
|
||||
self.sources = _EventSourcesInner(
|
||||
# mypy thinks attribute.type is `Optional`, but we know it's never `None` here since
|
||||
# all the attributes of `_EventSourcesInner` are annotated.
|
||||
*(attribute.type(hs) for attribute in attr.fields(_EventSourcesInner)) # type: ignore[misc]
|
||||
# mypy previously warned that attribute.type is `Optional`, but we know it's
|
||||
# never `None` here since all the attributes of `_EventSourcesInner` are
|
||||
# annotated.
|
||||
# As of the stubs in attrs 22.1.0, `attr.fields()` now returns Any,
|
||||
# so the call to `attribute.type` is not checked.
|
||||
*(attribute.type(hs) for attribute in attr.fields(_EventSourcesInner))
|
||||
)
|
||||
self.store = hs.get_datastores().main
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue