Fix tests for Python 3.6

This commit is contained in:
2021-01-21 13:01:14 -06:00
parent 6890840c6d
commit 0cf963e873
2 changed files with 4 additions and 1 deletions

View File

@@ -2,7 +2,9 @@
# Copyright (C) 2020, UChicago Argonne, LLC. All rights reserved.
# Released under the modified BSD license. See COPYING.md for more details.
from typing import TypedDict, Optional, Dict, Callable, Any
from typing import Optional, Dict, Callable, Any
from mypy_extensions import TypedDict
TrainingSample = TypedDict(
"TrainingSample",