summaryrefslogtreecommitdiffstats
path: root/Lib/collections/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/collections/__init__.py')
-rw-r--r--Lib/collections/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
index cff75a4..9657c1c 100644
--- a/Lib/collections/__init__.py
+++ b/Lib/collections/__init__.py
@@ -1016,7 +1016,7 @@ class UserDict(_collections_abc.MutableMapping):
self.data = {}
if dict is not None:
self.update(dict)
- if len(kwargs):
+ if kwargs:
self.update(kwargs)
def __len__(self): return len(self.data)
def __getitem__(self, key):