make gofmt happy

This commit is contained in:
Kovid Goyal 2023-03-10 13:03:51 +05:30
parent 7f6ed72684
commit 48e7ebb838
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View File

@ -448,7 +448,7 @@ def gen_ucd() -> None:
with open('tools/cmd/hints/url_regex.go', 'w') as f: with open('tools/cmd/hints/url_regex.go', 'w') as f:
f.write('// generated by gen-wcwidth.py, do not edit\n\n') f.write('// generated by gen-wcwidth.py, do not edit\n\n')
f.write('package hints\n\n') f.write('package hints\n\n')
f.write(f'const URL_DELIMITERS = `{chars}`') f.write(f'const URL_DELIMITERS = `{chars}`\n')
def gen_names() -> None: def gen_names() -> None: