Update dtk-template

This commit is contained in:
Luke Street 2024-03-03 22:35:05 -07:00
parent dfe3217473
commit d0025a638b
8 changed files with 679 additions and 375 deletions

View file

@ -25,7 +25,7 @@ def in_wsl() -> bool:
return "microsoft-standard" in uname().release
def import_d_file(in_file) -> str:
def import_d_file(in_file: str) -> str:
out_text = ""
with open(in_file) as file:
@ -60,7 +60,7 @@ def import_d_file(in_file) -> str:
return out_text
def main():
def main() -> None:
parser = argparse.ArgumentParser(
description="""Transform a .d file from Wine paths to normal paths"""
)
@ -81,4 +81,4 @@ def main():
if __name__ == "__main__":
main()
main()