Skip to content

Commit 4058fce

Browse files
committed
Using typing type
1 parent 94bee1d commit 4058fce

File tree

1 file changed

+2
-2
lines changed
  • airbyte-integrations/connectors/source-faker/source_faker

1 file changed

+2
-2
lines changed

airbyte-integrations/connectors/source-faker/source_faker/streams.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import os
66
from multiprocessing import Pool
7-
from typing import Any, Dict, Iterable, Mapping, Optional
7+
from typing import Any, Dict, Iterable, List, Mapping, Optional
88

99
from airbyte_cdk.sources.streams import IncrementalMixin, Stream
1010

@@ -38,7 +38,7 @@ def state(self) -> Mapping[str, Any]:
3838
def state(self, value: Mapping[str, Any]):
3939
self._state = value
4040

41-
def load_products(self) -> list[Dict]:
41+
def load_products(self) -> List[Dict]:
4242
dirname = os.path.dirname(os.path.realpath(__file__))
4343
return read_json(os.path.join(dirname, "record_data", "products.json"))
4444

0 commit comments

Comments
 (0)