This commit is contained in:
dongpingx 2025-06-17 04:32:47 +08:00 committed by GitHub
commit 469a42f76b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -448,7 +448,9 @@ class GenerateRst:
# Close the Rst file after all information is written.
def close_file(self):
self.file.close()
if self.file:
self.service_vm_used_pcpu_list.clear()
self.file.close()
def main(board_xml, scenario_xml, config_summary):