bradh352 commented on code in PR #12859: URL: https://github.com/apache/cloudstack/pull/12859#discussion_r3079564407
########## systemvm/debian/opt/cloud/bin/cs/CsHelper.py: ########## @@ -25,8 +25,12 @@ import os.path import re import shutil +from typing import Optional, TYPE_CHECKING from netaddr import * +if TYPE_CHECKING: + from .CsConfig import CsConfig Review Comment: pyright complains without that, I try to keep everything pyright clean -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
