You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return [field]# type: ignore # the type of field is expected to be List[str] here
74
+
return [field]
75
75
76
76
raiseValueError(f"Unknown type for cursor field `{field}")
77
77
@@ -234,7 +234,7 @@ def _get_message_groups(
234
234
at_least_one_page_in_group=False
235
235
elifmessage.type==MessageType.LOGandmessage.log.message.startswith( # type: ignore[union-attr] # None doesn't have 'message'
236
236
SliceLogger.SLICE_LOG_PREFIX
237
-
):# type: ignore[union-attr] # AirbyteMessage with MessageType.LOG has log.message
237
+
):
238
238
# parsing the first slice
239
239
current_slice_descriptor=self._parse_slice_description(message.log.message) # type: ignore[union-attr] # AirbyteMessage with MessageType.LOG has log.message
240
240
elifmessage.type==MessageType.LOG:
@@ -281,7 +281,7 @@ def _get_message_groups(
281
281
elif (
282
282
message.type==MessageType.CONTROL
283
283
andmessage.control.type==OrchestratorType.CONNECTOR_CONFIG# type: ignore[union-attr] # None doesn't have 'type'
284
-
):# type: ignore[union-attr] # AirbyteMessage with MessageType.CONTROL has control.type
0 commit comments