@@ -25,7 +25,7 @@ def __init__(self, plugin, controller):
2525 self ._controller = controller
2626
2727 def get_suggestions (self , value , row = None ):
28- print (f"DEBUG: suggesters.py SuggestionSource get_suggestions ENTER value={ value } " )
28+ # print(f"DEBUG: suggesters.py SuggestionSource get_suggestions ENTER value={value}")
2929 start = value
3030 while start and start [- 1 ] in [']' , '}' , '=' , ',' ]:
3131 start = start [:- 1 ]
@@ -46,7 +46,7 @@ def get_suggestions(self, value, row=None):
4646 # return list(sugs)
4747 if self ._plugin :
4848 sugs .update (self ._plugin .content_assist_values (initial )) # DEBUG: Remove old functionality when no more needed
49- print (f"DEBUG: suggesters.py SuggestionSource get_suggestions IN LOOP initial ={ initial } len sugs={ len (sugs )} " )
49+ # print(f"DEBUG: suggesters.py SuggestionSource get_suggestions IN LOOP initial ={initial} len sugs={len(sugs)}")
5050 return list (sugs )
5151
5252 def update_from_local (self , words : list , language :str ):
@@ -61,8 +61,8 @@ def update_from_local(self, words: list, language:str):
6161 list (localized .bdd_prefixes ) + localized .true_strings + localized .false_strings ))
6262 namespace = self ._controller .get_local_namespace ()
6363 namespace .update_words_cache (words )
64- print (f"DEBUG: suggesters.py SuggestionSource update_from_local words={ words } namespace={ namespace } "
65- f"language={ localized .name } " )
64+ # print(f"DEBUG: suggesters.py SuggestionSource update_from_local words={words} namespace={namespace} "
65+ # f"language={localized.name}")
6666
6767@total_ordering
6868class _Suggester (object ):
@@ -135,7 +135,7 @@ class BuiltInLibrariesSuggester(_Suggester):
135135
136136 def get_suggestions (self , name , * args ):
137137 _ = args
138- print (f"DEBUG: suggesters.py BuiltInLibrariesSuggester get_suggestions ENTER name={ name } " )
138+ # print(f"DEBUG: suggesters.py BuiltInLibrariesSuggester get_suggestions ENTER name={name}")
139139 return [self ._suggestion (n ) for n in sorted (robotapi .STDLIB_NAMES )
140140 if name .lower () in n .lower () and n not in ['BuiltIn' , 'Reserved' , 'Easter' ]]
141141
0 commit comments