mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-23 00:05:09 +00:00
ci: add pre_commit_check.py
This commit is contained in:
parent
72fb041382
commit
2263f1396b
1 changed files with 8 additions and 0 deletions
8
scripts/pre_commit_check.py
Normal file
8
scripts/pre_commit_check.py
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
import sys
|
||||||
|
|
||||||
|
def check_python_version():
|
||||||
|
version = sys.version
|
||||||
|
print(f"Python version: {version}")
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
check_python_version()
|
||||||
Loading…
Reference in a new issue