Skip to content

Commit 16b3c9e

Browse files
committed
fix typing error
1 parent cd02cc5 commit 16b3c9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dash/backends/base_server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
from abc import ABC, abstractmethod
2-
from typing import Any
2+
from typing import Any, Dict
33

44

55
class BaseDashServer(ABC):
66
server_type: str
77
server: Any
8-
config: dict[str, Any]
8+
config: Dict[str, Any]
99
request_adapter: Any
1010

1111
def __call__(self, *args, **kwargs) -> Any:

0 commit comments

Comments
 (0)