Skip to content

Commit 67799e9

Browse files
committed
Removing debug from python.
1 parent d53f501 commit 67799e9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

runtime-pyside6/LogarithmPlotter/util/latex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def renderSync(self, latex_markup: str, font_size: float, color: QColor) -> str:
181181
"""
182182
markup_hash, render_hash, export_path = self.create_export_path(latex_markup, font_size, color)
183183
if self.latexSupported and not path.exists(export_path + ".png"):
184-
print("Rendering", latex_markup, export_path)
184+
print("Rendering", latex_markup)
185185
# Generating file
186186
latex_path = path.join(self.tempdir, str(markup_hash))
187187
# If the formula is just recolored or the font is just changed, no need to recreate the DVI.

runtime-pyside6/LogarithmPlotter/util/promise.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ def _calls_in(self, function: Callable | QJSValue, within: list) -> bool:
153153
def _fulfill(self, data):
154154
self._state = "fulfilled"
155155
no_return = [None, QJSValue.SpecialValue.UndefinedValue]
156-
print("Fulfill")
157156
for i in range(len(self._fulfills)):
158157
try:
159158
result = self._fulfills[i](data)

0 commit comments

Comments
 (0)