Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
dd861b99
Unverified
Commit
dd861b99
authored
Mar 23, 2025
by
Wang Ran (汪然)
Committed by
GitHub
Mar 22, 2025
Browse files
[BugFix][Typing] Fix Imprecise Type Annotations (#15208)
Signed-off-by:
Wang Ran (汪然)
<
wrran@outlook.com
>
parent
eb63ea1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vllm/v1/engine/core_client.py
vllm/v1/engine/core_client.py
+3
-3
No files found.
vllm/v1/engine/core_client.py
View file @
dd861b99
...
@@ -212,9 +212,9 @@ class BackgroundResources:
...
@@ -212,9 +212,9 @@ class BackgroundResources:
"""Used as a finalizer for clean shutdown, avoiding
"""Used as a finalizer for clean shutdown, avoiding
circular reference back to the client object."""
circular reference back to the client object."""
ctx
:
Union
[
zmq
.
Context
]
=
None
ctx
:
zmq
.
Context
output_socket
:
Union
[
zmq
.
Socket
,
zmq
.
asyncio
.
Socket
]
=
None
output_socket
:
Optional
[
Union
[
zmq
.
Socket
,
zmq
.
asyncio
.
Socket
]
]
=
None
input_socket
:
Union
[
zmq
.
Socket
,
zmq
.
asyncio
.
Socket
]
=
None
input_socket
:
Optional
[
Union
[
zmq
.
Socket
,
zmq
.
asyncio
.
Socket
]
]
=
None
proc_handle
:
Optional
[
BackgroundProcHandle
]
=
None
proc_handle
:
Optional
[
BackgroundProcHandle
]
=
None
shutdown_path
:
Optional
[
str
]
=
None
shutdown_path
:
Optional
[
str
]
=
None
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment