mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
Fixes #2665. Regenerated by tabbott with `lint --fix` after a rebase and change in parameters. Note from tabbott: In a few cases, this converts technical debt in the form of unsorted imports into different technical debt in the form of our largest files having very long, ugly import sequences at the start. I expect this change will increase pressure for us to split those files, which isn't a bad thing. Signed-off-by: Anders Kaseorg <anders@zulip.com>
26 lines
680 B
Python
Executable File
26 lines
680 B
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
from typing import List
|
|
|
|
from lib.pretty_print import pretty_print_html
|
|
|
|
|
|
def clean_html(filenames: List[str]) -> None:
|
|
for fn in filenames:
|
|
print(f'Prettifying: {fn}')
|
|
with open(fn) as f:
|
|
html = f.read()
|
|
phtml = pretty_print_html(html)
|
|
with open(fn, 'w') as f:
|
|
f.write(phtml)
|
|
|
|
if __name__ == '__main__':
|
|
# If command arguments are provided, we only check those filenames.
|
|
# Otherwise, we display a message
|
|
filenames = sys.argv[1:]
|
|
if filenames:
|
|
clean_html(filenames)
|
|
sys.exit(0)
|
|
print('Please specify at least one file to prettify')
|
|
sys.exit(1)
|