Skip to content

Commit

Permalink
style: reorder parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
kanenorman committed Oct 11, 2024
1 parent 713e3a8 commit dc4028c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ def __init__(
"""

self.connection_string = connection_string
self.connection_param_kwargs = connection_param_kwargs or {}
self.table_name = table_name
self.embedding_dimension = embedding_dimension
if vector_function not in VALID_VECTOR_FUNCTIONS:
Expand All @@ -156,7 +157,6 @@ def __init__(
self._connection = None
self._cursor = None
self._dict_cursor = None
self.connection_param_kwargs = connection_param_kwargs or {}

@property
def cursor(self):
Expand Down

0 comments on commit dc4028c

Please sign in to comment.