Skip to content

Commit 17333c0

Browse files
fix: wait for stabilization of lae exe graph output
1 parent 8af5e93 commit 17333c0

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

scripts/import_graph.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import os
22
import re
3+
import time
34

45
def main():
56
folder_path = "./website/_includes"
@@ -11,8 +12,12 @@ def main():
1112

1213
print("Running ", f"lake exe graph {dot_path} --exclude-meta")
1314
os.system(f"lake exe graph {dot_path} --exclude-meta")
14-
print("Running .dot edditing")
1515

16+
print("Stabilizing wait")
17+
18+
time.sleep(10)
19+
20+
print("Running .dot edditing")
1621
dot = ""
1722
with open(dot_path, "r") as r:
1823
dot = r.read()

scripts/upstreaming_dashboard.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ def main():
4242
"num_sorries" : code.count("sorry"),
4343
"depends" : "import LeanCamCombi" in code
4444
}
45-
print(project_files)
4645

4746
folder_path = "./website/_includes"
4847
if not os.path.exists(folder_path):
@@ -59,7 +58,6 @@ def main():
5958
if pr["title"][:4] == "perf": continue
6059
if pr["is_draft"]: continue
6160

62-
print(pr)
6361
text += f" * "
6462
text += f" ["
6563
text += '<svg class="octicon octicon-git-pull-request open color-fg-open mr-1" title="Open" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="M1.5 3.25a2.25 2.25 0 1 1 3 2.122v5.256a2.251 2.251 0 1 1-1.5 0V5.372A2.25 2.25 0 0 1 1.5 3.25Zm5.677-.177L9.573.677A.25.25 0 0 1 10 .854V2.5h1A2.5 2.5 0 0 1 13.5 5v5.628a2.251 2.251 0 1 1-1.5 0V5a1 1 0 0 0-1-1h-1v1.646a.25.25 0 0 1-.427.177L7.177 3.427a.25.25 0 0 1 0-.354ZM3.75 2.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm0 9.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm8.25.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z"></path></svg>'

0 commit comments

Comments
 (0)