update 2023/4/30 pypi update

This commit is contained in:
bgArray
2023-04-30 22:45:03 +08:00
parent b8bae7b913
commit 6fe8e41dfa
2 changed files with 2 additions and 7 deletions

View File

@ -10,7 +10,7 @@ def main():
with console.status("Find the full path of .egg-info folder"):
egg_info: list = []
for file in os.listdir():
if os.path.isfile(file) and file.endswith(".egg-info"):
if file.endswith(".egg-info"):
egg_info.append(file)
console.print(file)
for file in track(["build", "dist", "logs", *egg_info], description="Deleting files"):