From 23add72dc1462814cfabc4ff79a0770db2461890 Mon Sep 17 00:00:00 2001 From: Josh Smith Date: Thu, 17 Feb 2022 21:46:01 -0500 Subject: [PATCH] replace `self` param with more appropriate `cls` in classmethods --- Lib/_collections_abc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/_collections_abc.py b/Lib/_collections_abc.py index 97913c77721da9..40417dc1d3133d 100644 --- a/Lib/_collections_abc.py +++ b/Lib/_collections_abc.py @@ -871,7 +871,7 @@ class KeysView(MappingView, Set): __slots__ = () @classmethod - def _from_iterable(self, it): + def _from_iterable(cls, it): return set(it) def __contains__(self, key): @@ -889,7 +889,7 @@ class ItemsView(MappingView, Set): __slots__ = () @classmethod - def _from_iterable(self, it): + def _from_iterable(cls, it): return set(it) def __contains__(self, item):