def skip_until_token_with_paths()

in azure-kusto-data/azure/kusto/data/streaming_response.py [0:0]


    def skip_until_token_with_paths(self, *tokens: (JsonTokenType, str)) -> JsonToken:
        for token in self:
            if any((token.token_type == t_type and token.token_path == t_path) for (t_type, t_path) in tokens):
                return token
            self.skip_children(token)