🔨 Remove unused import

This commit is contained in:
Dwi Siswanto
2020-11-18 01:55:17 +07:00
parent be8472e760
commit 18c74bc6c9

View File

@@ -1,5 +1,4 @@
#!/usr/bin/env python3
import argparse
import os
import subprocess
@@ -11,9 +10,9 @@ def command(args, start=None, end=None):
if __name__ == "__main__":
version = command(["git", "describe", "--tags", "--abbrev=0"])
template = eval(open('.github/scripts/README.tmpl', 'r').read())
template = eval(open(".github/scripts/README.tmpl", "r").read())
print(template)
f = open("README.md", "w")
f.write(template)
f.close()
f.close()