Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
dat-a-man committed Oct 15, 2024
1 parent fda0001 commit 33ff89c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/examples/partial_loading/partial_loading.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import os
import re
from dlt.common import pendulum as p
from typing import Dict, List, Iterator, Sequence
from typing import Dict, List, Iterator

import dlt
from dlt.sources import DltResource
Expand All @@ -29,7 +29,7 @@


@dlt.source
def chess_com_source(username: str, months: List[Dict[str, str]]) -> Sequence[DltResource]:
def chess_com_source(username: str, months: List[Dict[str, str]]) -> Iterator[DltResource]:
"""
Configures and yields resources to fetch chess game data for a given user across specified months.
Expand Down

0 comments on commit 33ff89c

Please sign in to comment.