Skip to content

Commit c2a0016

Browse files
committed
🎨 snake_case
1 parent 5a909bb commit c2a0016

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vuegen/streamlit_reportview.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ def __init__(
6060
"""
6161
super().__init__(report=report, report_type=report_type)
6262
self.streamlit_autorun = streamlit_autorun
63-
self.BUNDLED_EXECUTION = False
63+
self.bundled_execution = False
6464
if getattr(sys, "frozen", False) and hasattr(sys, "_MEIPASS"):
6565
self.report.logger.info("running in a PyInstaller bundle")
66-
self.BUNDLED_EXECUTION = True
66+
self.bundled_execution = True
6767
else:
6868
self.report.logger.info("running in a normal Python process")
6969

@@ -287,7 +287,7 @@ def run_report(self, output_dir: str = SECTIONS_DIR) -> None:
287287
self.report.logger.debug(
288288
f"Running Streamlit report from file: {target_file}"
289289
)
290-
if self.BUNDLED_EXECUTION:
290+
if self.bundled_execution:
291291
args = [
292292
"streamlit",
293293
"run",

0 commit comments

Comments
 (0)