Skip to content

Commit

Permalink
Formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zten authored and tazlin committed Dec 14, 2023
1 parent dde325c commit 7a1b1d3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions horde_worker_regen/process_management/process_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import random
import sys
import time
from asyncio import CancelledError, Task
from asyncio import CancelledError
from asyncio import Lock as Lock_Asyncio
from collections import deque
from collections.abc import Mapping
Expand Down Expand Up @@ -872,7 +872,9 @@ def _end_inference_process(self, process_info: HordeProcessInfo) -> None:
:return: None
"""
self._process_map.update_entry(
process_id=process_info.process_id, last_process_state=None, loaded_horde_model_name=None
process_id=process_info.process_id,
last_process_state=None,
loaded_horde_model_name=None,
)
try:
process_info.pipe_connection.send(HordeControlMessage(control_flag=HordeControlFlag.END_PROCESS))
Expand Down

0 comments on commit 7a1b1d3

Please sign in to comment.