Skip to content

Commit

Permalink
wrong imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg committed Nov 1, 2024
1 parent 5f424da commit abf9d66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from typing import NamedTuple

import psutil
from models_library.error_codes import create_error_code
from common_library.error_codes import create_error_code
from servicelib.logging_errors import create_troubleshotting_log_kwargs

from ..modules.mounted_fs import MountedVolumes
Expand Down Expand Up @@ -74,7 +74,7 @@ async def async_command(
try:
stdout, _ = await asyncio.wait_for(proc.communicate(), timeout=timeout)

except asyncio.TimeoutError:
except TimeoutError:
proc.terminate()
_close_transport(proc)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from datetime import timedelta
from functools import partial

from common_library.errors_classes import OsparcErrorMixin
from fastapi import FastAPI
from models_library.basic_types import IDStr
from models_library.rabbitmq_messages import ProgressType
Expand Down

0 comments on commit abf9d66

Please sign in to comment.