File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 77import sys
88from pathlib import Path
99
10+ from overpy import __about__ as overpy_about
11+
1012# If extensions (or modules to document with autodoc) are in another directory,
1113# add these directories to sys.path here. If the directory is relative to the
1214# documentation root, use os.path.abspath to make it absolute, like shown here.
4951# built documents.
5052#
5153# The short X.Y version.
52- from overpy import __about__ as overpy_about
5354version = overpy_about .__version__
5455# The full version, including alpha/beta/rc tags.
5556release = overpy_about .__version__
Original file line number Diff line number Diff line change 11from collections import OrderedDict
22from datetime import datetime
33from decimal import Decimal
4+ from urllib .request import urlopen
5+ from urllib .error import HTTPError
46from xml .sax import handler , make_parser
57import json
68import re
2527 "visible" : lambda v : v .lower () == "true"
2628}
2729
28- from urllib .request import urlopen
29- from urllib .error import HTTPError
30-
3130
3231def is_valid_type (element , cls ):
3332 """
You can’t perform that action at this time.
0 commit comments