Skip to content

Commit b43b248

Browse files
committed
🔥 remove old code (unused)
1 parent 4eaf9a0 commit b43b248

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/vuegen/quarto_reportview.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import logging
21
import os
32
import subprocess
43
import sys
@@ -28,12 +27,12 @@ def __init__(
2827
):
2928
super().__init__(report=report, report_type=report_type)
3029
self.quarto_checks = quarto_checks
31-
self.BUNDLED_EXECUTION = False
30+
# self.BUNDLED_EXECUTION = False
3231
self.quarto_path = "quarto"
3332
# self.env_vars = os.environ.copy()
3433
if getattr(sys, "frozen", False) and hasattr(sys, "_MEIPASS"):
3534
self.report.logger.info("running in a PyInstaller bundle")
36-
self.BUNDLED_EXECUTION = True
35+
# self.BUNDLED_EXECUTION = True
3736
self.report.logger.debug(f"sys._MEIPASS: {sys._MEIPASS}")
3837
else:
3938
self.report.logger.info("running in a normal Python process")

0 commit comments

Comments
 (0)