chore(Linter): reformatted code with black (#211)

* chore(Linter): reformatted code with black

* Create black.yaml
This commit is contained in:
Mark Aron Szulyovszky
2022-02-17 19:22:17 +01:00
committed by GitHub
parent f3fee4a4e1
commit 8dd2d88740
101 changed files with 2596 additions and 2320 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
from tqdm import tqdm
import ray
def parallel_compute_with_bar(computations) -> list:
def parallel_compute_with_bar(computations) -> list:
def to_iterator(obj_ids):
while obj_ids:
done, obj_ids = ray.wait(obj_ids)
@@ -12,4 +12,4 @@ def parallel_compute_with_bar(computations) -> list:
for x in tqdm(to_iterator(computations), total=len(computations)):
ret.append(x)
return ret
return ret