🔨 Remove unused import
parent
be8472e760
commit
18c74bc6c9
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue