Support the new path option for yang-model-validator
[integration/test.git] / csit / libraries / Counter.py
index b43382cf16cc339f8b809c5f1e5b13538898e6fa..b23e689df9ec9c565a8d88ecd6d8b6d564f94f1a 100644 (file)
@@ -134,7 +134,7 @@ class Counter(dict):
         return result
 
     def __sub__(self, other):
-        """ Subtract count, but keep only results with positive counts.
+        """Subtract count, but keep only results with positive counts.
 
         >>> Counter('abbbc') - Counter('bccd')
         Counter({'b': 2, 'a': 1})
@@ -167,7 +167,7 @@ class Counter(dict):
         return result
 
     def __and__(self, other):
-        """ Intersection is the minimum of corresponding counts.
+        """Intersection is the minimum of corresponding counts.
 
         >>> Counter('abbb') & Counter('bcc')
         Counter({'b': 1})