Commit 0bcf4dae authored by Riyasat Ohib's avatar Riyasat Ohib
Browse files

[refactor] Modified collections to collections.abc

parent b33e705e
......@@ -3,7 +3,9 @@
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from collections import abc, defaultdict
import collections.abc as abc
from collections import defaultdict
from enum import Enum
import logging
from typing import Any, Dict, List, Optional, Union
......
......@@ -3,7 +3,7 @@
# This source code is licensed under the BSD license found in the
# LICENSE file in the root directory of this source tree.
from collections import abc
import collections.abc as abc
from math import inf
from typing import Any, Callable, Dict, List, Optional
......
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