feat(*): add shebang to *.py in project root

Signed-off-by: Rongrong <i@rong.moe>
This commit is contained in:
Rongrong 2022-07-31 05:44:35 +08:00
parent ba944d7a0e
commit 55699f5276
No known key found for this signature in database
GPG Key ID: 1C2D45D45AB7FE94
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
import re
from functools import partial
from setuptools import setup, find_packages

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
import src
if __name__ == '__main__':