Skip to content

Commit 3fe6c8c

Browse files
committed
fix(scripts): resolve syntax error in validation script
1 parent 9f28993 commit 3fe6c8c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

scripts/validate_bwc.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,12 @@ def main():
7474
errors = scan_incidents(incidents_dir, valid_ids)
7575

7676
if errors:
77-
print("
78-
❌ Validation Failed! Found invalid BWC references:")
77+
print("\n❌ Validation Failed! Found invalid BWC references:")
7978
for err in errors:
8079
print(err)
8180
sys.exit(1)
8281
else:
83-
print("
84-
✅ All BWC references are valid.")
82+
print("\n✅ All BWC references are valid.")
8583
sys.exit(0)
8684

8785
if __name__ == "__main__":

0 commit comments

Comments
 (0)