Skip to content

Commit 2f47930

Browse files
authored
remove some debug code
1 parent 2f18af1 commit 2f47930

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

typescript/commands/quick_info.py

-5
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,6 @@ def handle_quick_info(self, quick_info_resp_dict, display_point):
6868
self.template = Template(load_quickinfo_and_error_popup_template())
6969

7070
html = self.get_popup_html(error_html, info_str, doc_str)
71-
72-
print(html)
73-
7471
self.view.show_popup(html, flags=sublime.HIDE_ON_MOUSE_MOVE_AWAY, location=display_point, max_height=300, max_width=1500)
7572

7673
def get_popup_html(self, error, info, doc):
@@ -155,8 +152,6 @@ def format_css(self, style):
155152
return result
156153

157154
def get_theme_styles(self):
158-
print(self.view.style_for_scope("keyword.control.flow.ts"))
159-
160155
return {
161156
"type": self.format_css(self.view.style_for_scope("entity.name.type.class.ts")),
162157
"keyword": self.format_css(self.view.style_for_scope("keyword.control.flow.ts")),

0 commit comments

Comments
 (0)