diff --git a/distributed/worker_memory.py b/distributed/worker_memory.py index a9d3f841ba5..ca4c163ec27 100644 --- a/distributed/worker_memory.py +++ b/distributed/worker_memory.py @@ -140,7 +140,7 @@ def __init__( ): assert self.memory_monitor_interval is not None pc = PeriodicCallback( - # Don't store worker ar self.worker to avoid creating a circular + # Don't store worker as self.worker to avoid creating a circular # dependency. We could have alternatively used a weakref. # FIXME annotations: https://github.com/tornadoweb/tornado/issues/3117 partial(self.memory_monitor, worker), # type: ignore