Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 93ab56a

Browse files
committed
dict -> Dict
1 parent 5812d26 commit 93ab56a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_diff/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import json
77
import logging
88
from itertools import islice
9-
from typing import Optional
9+
from typing import Dict, Optional
1010

1111
import rich
1212
from rich.logging import RichHandler
@@ -36,7 +36,7 @@
3636
set_entrypoint_name("CLI")
3737

3838

39-
def _get_log_handlers() -> dict[str, logging.Handler]:
39+
def _get_log_handlers() -> Dict[str, logging.Handler]:
4040
handlers = {}
4141
date_format = "%H:%M:%S"
4242
log_format_rich = "%(message)s"

0 commit comments

Comments
 (0)