The error generated by the following program is unexpected: ```py import os class C: def __init__(self) -> None: self.os = os self.os.chdir('/') # Error: Module has no attribute "chdir" os.chdir('/') # Ok C() # No runtime error ```