Skip to content

Commit

Permalink
chore: Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Feb 2, 2024
1 parent 3402881 commit 62682e2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tap_readthedocs/tap.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
"""ReadTheDocs tap class."""
from __future__ import annotations

from singer_sdk import Stream, Tap
import typing as t

from singer_sdk import Tap
from singer_sdk import typing as th

from tap_readthedocs import streams

if t.TYPE_CHECKING:
from tap_readthedocs.client import ReadTheDocsStream


class TapReadTheDocs(Tap):
"""Singer tap for readthedocs.io."""
Expand All @@ -25,7 +30,7 @@ class TapReadTheDocs(Tap):
),
).to_dict()

def discover_streams(self) -> list[Stream]:
def discover_streams(self) -> list[ReadTheDocsStream]:
"""Return a list of discovered streams.
Returns:
Expand Down

0 comments on commit 62682e2

Please sign in to comment.