diff options
author | Jonathan de Jong <jonathan@automatia.nl> | 2021-03-24 14:34:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-24 09:34:30 -0400 |
commit | 4c3827f2c18180533b804ebd4d8f5cb90774244b (patch) | |
tree | 5a655fea7a1aeb307e09787f73a29db8918a0a64 /tests | |
parent | Spaces summary: call out to other servers (#9653) (diff) | |
download | synapse-4c3827f2c18180533b804ebd4d8f5cb90774244b.tar.xz |
Enable addtional flake8-bugbear linting checks. (#9659)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server.py b/tests/server.py index 2287d20076..57cc4ac605 100644 --- a/tests/server.py +++ b/tests/server.py @@ -593,7 +593,7 @@ class FakeTransport: if self.disconnected: return - if getattr(self.other, "transport") is None: + if not hasattr(self.other, "transport"): # the other has no transport yet; reschedule if self.autoflush: self._reactor.callLater(0.0, self.flush) |