add new lines
This commit is contained in:
parent
d0bf33375b
commit
5a6a4fdca6
1 changed files with 4 additions and 2 deletions
|
|
@ -182,10 +182,12 @@ def scan_classes(
|
|||
data["ref_platform_non_sdk_34_classes"] = list(ref_platform_non_sdk_34_classes)
|
||||
if sdk34_classes_file is not None:
|
||||
with sdk34_classes_file.open("w") as file:
|
||||
file.writelines(sorted(sdk_34_classes))
|
||||
for l in sorted(sdk_34_classes):
|
||||
file.write(f"{l}\n")
|
||||
if hidden_file is not None:
|
||||
with hidden_file.open("w") as file:
|
||||
file.writelines(sorted(ref_platform_non_sdk_34_classes))
|
||||
for l in sorted(ref_platform_non_sdk_34_classes):
|
||||
file.write(f"{l}\n")
|
||||
return entry
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue