File tree Expand file tree Collapse file tree
packages/netaudio/src/netaudio/commands Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 runs-on : ubuntu-latest
1111 steps :
1212 - uses : actions/checkout@v6
13+ - uses : astral-sh/setup-uv@v7
14+ - run : uv run --python 3.9 --no-project python -m compileall -q packages/netaudio/src/netaudio
1315 - run : |
1416 tag="${GITHUB_REF_NAME#v}"
1517 version="$(python3 -c 'import tomllib; print(tomllib.load(open("pyproject.toml", "rb"))["project"]["version"])')"
Original file line number Diff line number Diff line change @@ -392,9 +392,10 @@ def _audit_single_bundle(bundle_path: Path) -> bool:
392392 "system" : "SYSTEM" ,
393393 }
394394
395- print (f"\n { ("-" if app_settings .no_color else "─" ) * 72 } " )
395+ rule = ("-" if app_settings .no_color else "─" ) * 72
396+ print (f"\n { rule } " )
396397 print ("TIMELINE" )
397- print (f" { ( "-" if app_settings . no_color else "─" ) * 72 } " )
398+ print (rule )
398399
399400 all_events = []
400401
@@ -492,9 +493,10 @@ def _audit_single_bundle(bundle_path: Path) -> bool:
492493 if payload :
493494 print (_format_audit_packet (payload ))
494495
495- print (f"\n { ("-" if app_settings .no_color else "─" ) * 72 } " )
496+ rule = ("-" if app_settings .no_color else "─" ) * 72
497+ print (f"\n { rule } " )
496498 print ("VERIFICATION SUMMARY" )
497- print (f" { ( "-" if app_settings . no_color else "─" ) * 72 } " )
499+ print (rule )
498500
499501 hypotheses = [m for m in markers if m .get ("marker_type" ) == "hypothesis" ]
500502 observations = [m for m in markers if m .get ("marker_type" ) == "observation" ]
You can’t perform that action at this time.
0 commit comments