Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit 7679d10

Browse files
author
John Andersen
committed
style: Updated black and reformatted
Signed-off-by: John Andersen <[email protected]>
1 parent c011461 commit 7679d10

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

dffml/df/memory.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ def __init__(
734734
self.completed_event = asyncio.Event()
735735

736736
async def __aenter__(
737-
self
737+
self,
738738
) -> "MemoryOperationImplementationNetworkContext":
739739
self._stack = AsyncExitStack()
740740
await self._stack.__aenter__()
@@ -1281,9 +1281,10 @@ async def run_operations_for_ctx(
12811281
self.logger.error("%s", output.getvalue().rstrip())
12821282
output.close()
12831283
elif task is input_set_enters_network:
1284-
more, new_input_sets = (
1285-
input_set_enters_network.result()
1286-
)
1284+
(
1285+
more,
1286+
new_input_sets,
1287+
) = input_set_enters_network.result()
12871288
for new_input_set in new_input_sets:
12881289
# Identify which operations have complete contextually
12891290
# appropriate input sets which haven't been run yet

0 commit comments

Comments
 (0)