Skip to content

Commit 925691a

Browse files
committed
Remove debugging lines
1 parent 2ac6d08 commit 925691a

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

runware/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2600,7 +2600,7 @@ def configure_from_task_type(task_type: Optional[str]) -> Optional[tuple]:
26002600

26012601
try:
26022602
responses = await self._sendPollRequest(task_uuid, poll_count)
2603-
print(f"[DEBUG _pollResults] Responses: {responses}")
2603+
26042604
for response in responses:
26052605
if response.get("code"):
26062606
raise RunwareAPIError(response)

runware/utils.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -760,11 +760,11 @@ def createVideoToTextFromResponse(response: dict) -> IVideoToText:
760760

761761

762762
async def getIntervalWithPromise(
763-
callback: GetWithPromiseCallBackType,
764-
debugKey: str = "debugKey",
765-
timeOutDuration: int = TIMEOUT_DURATION,
766-
shouldThrowError: bool = True,
767-
pollingInterval: int = 350,
763+
callback: GetWithPromiseCallBackType,
764+
debugKey: str = "debugKey",
765+
timeOutDuration: int = TIMEOUT_DURATION,
766+
shouldThrowError: bool = True,
767+
pollingInterval: int = 350,
768768
) -> Any:
769769
logger = logging.getLogger(__name__)
770770

0 commit comments

Comments
 (0)