Skip to content

Commit b8d0d44

Browse files
authored
Merge pull request #975 from googlefonts/disable-formatter
packager: rm html_formatter
2 parents 028c53e + 1e06f66 commit b8d0d44

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Lib/gftools/packager.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
from gftools.utils import (
3838
download_file,
3939
is_google_fonts_repo,
40-
format_html,
4140
Google_Fonts_has_family,
4241
has_gh_token,
4342
)
@@ -353,7 +352,7 @@ def package_family(
353352
else:
354353
about_file = desc_file
355354
with open(about_file, encoding="utf-8") as fin:
356-
about = format_html(fin.read())
355+
about = fin.read()
357356
with open(about_file, "w", encoding="utf-8") as fout:
358357
fout.write(about)
359358
return True

0 commit comments

Comments
 (0)