(self)
| 651 | self.base = oldbase |
| 652 | |
| 653 | def get_base(self): |
| 654 | # type: () -> Union[str, List[Tuple[str, Dict[str,Dict[str,str]]]]] |
| 655 | if self.base is None: |
| 656 | self.lazy_init() |
| 657 | return cast(Union[str, List[Tuple[str, Dict[str, Dict[str, str]]]]], self.base) |