Skip to content

Commit 081f662

Browse files
committed
update tools
1 parent f39810c commit 081f662

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tools/update_intended_for.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from rich import print
2525

2626
VERBOSE = False
27-
DRY_RUN = True
27+
DRY_RUN = False
2828

2929

3030
def root_dir():
@@ -33,13 +33,12 @@ def root_dir():
3333

3434
def main():
3535
for json_path in root_dir().glob("**/*.json"):
36-
3736
with open(json_path) as f:
3837
content = json.load(f)
3938

4039
if "IntendedFor" not in content:
4140
continue
42-
41+
4342
print()
4443
print(f"Checking {json_path.relative_to(root_dir())}")
4544

0 commit comments

Comments
 (0)