diff options
author | Karthikeyan Singaravelan <tir.karthi@gmail.com> | 2020-07-20 23:03:04 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-20 13:33:04 -0400 |
commit | a7b06a81f02ed97975f45e0abd70b731c686fc86 (patch) | |
tree | 10652c60f806376dfdac6541fe7ad73bbffaefa9 /synapse/replication | |
parent | Change sample config's postgres user to synapse_user (#7889) (diff) | |
download | synapse-a7b06a81f02ed97975f45e0abd70b731c686fc86.tar.xz |
Fix deprecation warning: import ABC from collections.abc (#7892)
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/tcp/streams/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/tcp/streams/events.py b/synapse/replication/tcp/streams/events.py index 1c2a4cce7f..16c63ff4ec 100644 --- a/synapse/replication/tcp/streams/events.py +++ b/synapse/replication/tcp/streams/events.py @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. import heapq -from collections import Iterable +from collections.abc import Iterable from typing import List, Tuple, Type import attr |