mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2025-08-15 10:41:58 +08:00
pre-commit-hooks: python3.6+
This commit is contained in:
@ -1,30 +1,26 @@
|
||||
from __future__ import absolute_import
|
||||
from __future__ import print_function
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import argparse
|
||||
import io
|
||||
import sys
|
||||
import xml.sax.handler
|
||||
from typing import Optional
|
||||
from typing import Sequence
|
||||
|
||||
|
||||
def main(argv=None): # type: (Optional[Sequence[str]]) -> int
|
||||
def main(argv: Optional[Sequence[str]] = None) -> int:
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('filenames', nargs='*', help='XML filenames to check.')
|
||||
args = parser.parse_args(argv)
|
||||
|
||||
retval = 0
|
||||
handler = xml.sax.handler.ContentHandler()
|
||||
for filename in args.filenames:
|
||||
try:
|
||||
with io.open(filename, 'rb') as xml_file:
|
||||
xml.sax.parse(xml_file, xml.sax.handler.ContentHandler())
|
||||
with open(filename, 'rb') as xml_file:
|
||||
# https://github.com/python/typeshed/pull/3725
|
||||
xml.sax.parse(xml_file, handler) # type: ignore
|
||||
except xml.sax.SAXException as exc:
|
||||
print('{}: Failed to xml parse ({})'.format(filename, exc))
|
||||
print(f'{filename}: Failed to xml parse ({exc})')
|
||||
retval = 1
|
||||
return retval
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(main())
|
||||
exit(main())
|
||||
|
Reference in New Issue
Block a user