Removing debug from python.

This commit is contained in:
Ad5001 2024-10-22 02:50:56 +02:00
parent d53f50193a
commit 67799e9908
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
2 changed files with 1 additions and 2 deletions

View file

@ -181,7 +181,7 @@ class Latex(QObject):
"""
markup_hash, render_hash, export_path = self.create_export_path(latex_markup, font_size, color)
if self.latexSupported and not path.exists(export_path + ".png"):
print("Rendering", latex_markup, export_path)
print("Rendering", latex_markup)
# Generating file
latex_path = path.join(self.tempdir, str(markup_hash))
# If the formula is just recolored or the font is just changed, no need to recreate the DVI.

View file

@ -153,7 +153,6 @@ class PyPromise(QObject):
def _fulfill(self, data):
self._state = "fulfilled"
no_return = [None, QJSValue.SpecialValue.UndefinedValue]
print("Fulfill")
for i in range(len(self._fulfills)):
try:
result = self._fulfills[i](data)