Skip to content
Snippets Groups Projects
Commit 8fbe5564 authored by Dennis Noll's avatar Dennis Noll
Browse files

[data] DSS.map: more appropriate default of tqdm kwargs

parent ccd36da8
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ class SKDict(dict):
def copy(self):
return self.__class__(self)
def map(self, func, groups=None, prog=False):
def map(self, func, groups=None, prog={}):
if groups is None:
groups = self.keys()
wrap = lambda x: tqdm(x, **prog) if prog else lambda x: x
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment