Skip to content

Commit

Permalink
add future annotations import
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Dec 3, 2024
1 parent df00054 commit d7d1fda
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#

from __future__ import annotations

import logging
import traceback
from typing import TYPE_CHECKING, Optional, Tuple
Expand All @@ -25,7 +27,7 @@


class DefaultFileBasedAvailabilityStrategy(AbstractFileBasedAvailabilityStrategy):
def __init__(self, stream_reader: AbstractFileBasedStreamReader):
def __init__(self, stream_reader: AbstractFileBasedStreamReader) -> None:
self.stream_reader = stream_reader

def check_availability( # type: ignore[override]
Expand Down

0 comments on commit d7d1fda

Please sign in to comment.