mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-22 09:35:45 +03:00
Fix mypy for platforms without epoll support. (#11771)
This commit is contained in:
parent
7ad7a47e5a
commit
c072c0b829
2 changed files with 3 additions and 2 deletions
1
changelog.d/11771.misc
Normal file
1
changelog.d/11771.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Improve accuracy of `python_twisted_reactor_tick_time` prometheus metric.
|
|
@ -35,7 +35,7 @@ tick_time = Histogram(
|
|||
class EpollWrapper:
|
||||
"""a wrapper for an epoll object which records the time between polls"""
|
||||
|
||||
def __init__(self, poller: "select.epoll"):
|
||||
def __init__(self, poller: "select.epoll"): # type: ignore[name-defined]
|
||||
self.last_polled = time.time()
|
||||
self._poller = poller
|
||||
|
||||
|
@ -71,7 +71,7 @@ try:
|
|||
# if the reactor has a `_poller` attribute, which is an `epoll` object
|
||||
# (ie, it's an EPollReactor), we wrap the `epoll` with a thing that will
|
||||
# measure the time between ticks
|
||||
from select import epoll
|
||||
from select import epoll # type: ignore[attr-defined]
|
||||
|
||||
poller = reactor._poller # type: ignore[attr-defined]
|
||||
except (AttributeError, ImportError):
|
||||
|
|
Loading…
Reference in a new issue