Skip to content
This repository was archived by the owner on Mar 12, 2020. It is now read-only.

Commit eddff10

Browse files
committed
Remove accidentaly left debug prints
1 parent 1b713d8 commit eddff10

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

SQLToolsAPI/Completion.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,6 @@ def getAutoCompleteList(self, prefix, sql, sqlToCursor):
249249
# return completions with or without quotes?
250250
# determined based on ident after last dot
251251
startsWithQuote = _startsWithQuote(prefix.split(".").pop())
252-
print("checking: " + prefix.split(".").pop())
253-
print("starts with quote: " + str(startsWithQuote))
254252
autocompleteList = [item.format(startsWithQuote) for item in autocompleteList]
255253
return autocompleteList, inhibit
256254

0 commit comments

Comments
 (0)