Skip to content

Commit

Permalink
Fix typo in list typing (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
bolasim authored Feb 3, 2023
1 parent e89c8a0 commit a4d4dbe
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import subprocess

from helpers.context_managers import current_directory
from typing import List


class InferenceServerProcessController:
Expand All @@ -12,12 +13,12 @@ class InferenceServerProcessController:
_inference_server_port: int
_inference_server_home: str
_app_logger: logging.Logger
_inference_server_process_args: list[str]
_inference_server_process_args: List[str]

def __init__(
self,
inference_server_home: str,
inference_server_process_args: list[str],
inference_server_process_args: List[str],
inference_server_port: int,
app_logger: logging.Logger,
) -> None:
Expand Down

0 comments on commit a4d4dbe

Please sign in to comment.