Skip to content

Commit 3abbbed

Browse files
committed
Fix type hint syntax error
1 parent 9b50c10 commit 3abbbed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/appose/python_worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ class Worker:
197197
def __init__(self):
198198
self.tasks: dict[str, Task] = {}
199199
self.queue: list[Task] = []
200-
self.exports[str, Any] = {}
200+
self.exports: dict[str, Any] = {}
201201

202202
# Flag this process as a worker, not a service.
203203
_set_worker(True)

0 commit comments

Comments
 (0)