Skip to content

Commit a87f34b

Browse files
authored
[ENGDOC-204] fix Sphinx-busting docstring (#1571)
1 parent 69fadcb commit a87f34b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/snowflake/connector/cursor.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,12 +182,12 @@ class SnowflakeCursor:
182182
connection: The connection object by which the cursor was created.
183183
errorhandle: The class that handles error handling.
184184
is_file_transfer: Whether, or not the current command is a put, or get.
185-
186-
TODO:
187-
Most of these attributes have no reason to be properties, we could just store them in public variables.
188-
Calling a function is expensive in Python and most of these getters are unnecessary.
189185
"""
190186

187+
# TODO:
188+
# Most of these attributes have no reason to be properties, we could just store them in public variables.
189+
# Calling a function is expensive in Python and most of these getters are unnecessary.
190+
191191
INSERT_SQL_RE = re.compile(r"^insert\s+into", flags=re.IGNORECASE)
192192
COMMENT_SQL_RE = re.compile(r"/\*.*\*/")
193193
INSERT_SQL_VALUES_RE = re.compile(

0 commit comments

Comments
 (0)