Hi Collin, > This patch adds type hints to the Python classes.
Looks good. Thanks! > Same as previously done in GLFileTable that I wrote. The only new > thing introduced is the syntax for class variables, so this line in a > class definition: > > section_label_pattern = re.compile(...) > > becomes this: > > section_label_pattern: ClassVar[re.Pattern] = re.compile(...) It's pretty self-explaining, therefore OK to use this new ClassVar[...]. Bruno