Skip to content

Commit 4477538

Browse files
committed
chore: format/type-check/lint
1 parent f2b6121 commit 4477538

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

airbyte_cdk/sources/declarative/async_job/job_tracker.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import threading
55
import uuid
66
from dataclasses import dataclass, field
7-
from typing import Set, Union, Mapping, Any
7+
from typing import Any, Mapping, Set, Union
88

99
from airbyte_cdk.logger import lazy_log
1010
from airbyte_cdk.sources.declarative.interpolation import InterpolatedString
@@ -18,10 +18,10 @@ class ConcurrentJobLimitReached(Exception):
1818

1919
@dataclass
2020
class JobTracker:
21-
limit: Union[int, InterpolatedString]
21+
limit: Union[int, str]
2222
config: Mapping[str, Any] = field(default_factory=dict)
2323

24-
def __post_init__(self):
24+
def __post_init__(self) -> None:
2525
self._jobs: Set[str] = set()
2626
self._lock = threading.Lock()
2727
if isinstance(self.limit, str):

0 commit comments

Comments
 (0)