Unverified Commit 9ea55bad authored by Zaida Zhou's avatar Zaida Zhou Committed by GitHub
Browse files

[Fix] dump has incompatible type TextIO (#2029)

parent 569d588e
# Copyright (c) OpenMMLab. All rights reserved. # Copyright (c) OpenMMLab. All rights reserved.
from io import BytesIO, StringIO from io import BytesIO, StringIO
from pathlib import Path from pathlib import Path
from typing import Any, Callable, Dict, List, Optional, Union from typing import Any, Callable, Dict, List, Optional, TextIO, Union
from ..utils import is_list_of from ..utils import is_list_of
from .file_client import FileClient from .file_client import FileClient
from .handlers import BaseFileHandler, JsonHandler, PickleHandler, YamlHandler from .handlers import BaseFileHandler, JsonHandler, PickleHandler, YamlHandler
FileLikeObject = Union[StringIO, BytesIO] FileLikeObject = Union[TextIO, StringIO, BytesIO]
file_handlers = { file_handlers = {
'json': JsonHandler(), 'json': JsonHandler(),
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment