Skip to content

Commit

Permalink
htmlalyzer adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener committed Dec 22, 2024
1 parent 030f62c commit 6479a06
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
2 changes: 0 additions & 2 deletions logpyle/HTMLalyzer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ def build() -> None:
"__init__.py",
"runalyzer.py",
"runalyzer_gather.py",
"version.py",
pymbolic_whl_path,
]
files_dict = {}
Expand All @@ -85,7 +84,6 @@ def build() -> None:
logpyle_py_file=files_dict["__init__.py"],
runalyzer_py_file=files_dict["runalyzer.py"],
runalyzer_gather_py_file=files_dict["runalyzer_gather.py"],
version_py_file=files_dict["version.py"],
)

with open(html_path + "/main.css") as f:
Expand Down
6 changes: 0 additions & 6 deletions logpyle/HTMLalyzer/htmlalyzer.html

Large diffs are not rendered by default.

6 changes: 0 additions & 6 deletions logpyle/HTMLalyzer/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ def __init__(self, names: list[str]):
logpyle_py_file = "$logpyle_py_file"
runalyzer_py_file = "$runalyzer_py_file"
runalyzer_gather_py_file = "$runalyzer_gather_py_file"
version_py_file = "$version_py_file"


pymbolic_whl_file_str = "$pymbolic_whl_file_str"
Expand Down Expand Up @@ -68,11 +67,6 @@ async def import_logpyle() -> None:
py_binary_data = base64.decodebytes(py_base_64)
with open("logpyle/runalyzer_gather.py", "wb") as f:
f.write(py_binary_data)
# copy version.py
py_base_64 = version_py_file.encode("utf-8")
py_binary_data = base64.decodebytes(py_base_64)
with open("logpyle/version.py", "wb") as f:
f.write(py_binary_data)


def clear_term() -> None:
Expand Down

0 comments on commit 6479a06

Please sign in to comment.