Skip to content

Commit 642e856

Browse files
committed
CDK: ref
Signed-off-by: Artem Inzhyyants <[email protected]>
1 parent e8765eb commit 642e856

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airbyte_cdk/sources/streams/concurrent/state_converters/incrementing_count_stream_state_converter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def _to_state_message(self, value: Any) -> Any:
2020

2121
@classmethod
2222
def get_end_provider(cls) -> Callable[[], float]:
23-
return lambda: float("inf") # i sort of hate that this is a float, shakes fist at python
23+
return lambda: float("inf")
2424

2525
def convert_from_sequential_state(
2626
self,
@@ -61,7 +61,7 @@ def convert_from_sequential_state(
6161
"legacy": stream_state,
6262
}
6363

64-
def parse_value(self, value: int) -> int: # should we use a string which is "higher fidelity
64+
def parse_value(self, value: int) -> int:
6565
return value
6666

6767
@property

0 commit comments

Comments
 (0)