Eliminate USE_RFC8040
[integration/test.git] / csit / libraries / Common.py
index 448815406e7188653d9a90799a9fb6896e5b8d74..d8bc1255cf11d976dc4af9e9f182c192925b82f4 100644 (file)
@@ -62,7 +62,7 @@ def num_of_nodes(depth, fanout):
     """
     result = 0
     for i in range(depth):
-        result += fanout ** i
+        result += fanout**i
     return result