diff --git a/airbyte-cdk/python/airbyte_cdk/sources/abstract_source.py b/airbyte-cdk/python/airbyte_cdk/sources/abstract_source.py index 6e5dfadf89b5..1de56a0ff087 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/abstract_source.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/abstract_source.py @@ -3,7 +3,8 @@ # import logging -from abc import ABC, abstractmethod + + from typing import Any, Dict, Iterator, List, Mapping, MutableMapping, Optional, \ Tuple, Union @@ -29,6 +30,7 @@ from airbyte_cdk.utils.event_timing import create_timer from airbyte_cdk.utils.traced_exception import AirbyteTracedException +from abc import ABC, abstractmethod class AbstractSource(Source, ABC): """