Skip to content
Snippets Groups Projects
Commit f215f6fd authored by Nils Kohl's avatar Nils Kohl :full_moon_with_face:
Browse files

Fixed workaround and linter complaints

parent 1c652701
No related merge requests found
......@@ -356,7 +356,7 @@ class ParallelDataHandling(DataHandling):
}
level = level.upper()
message = " ".join(str(e) for e in args)
ParallelDataHandling._log_map[level](message)
_log_map[level](message)
def log_on_root(self, *args, level='INFO'):
if self.is_root:
......@@ -369,4 +369,3 @@ class ParallelDataHandling(DataHandling):
@property
def world_rank(self):
return wlb.mpi.worldRank()
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment