ci: add pre_commit_check.py

This commit is contained in:
Digikwal 2025-06-24 19:46:45 +02:00 committed by GitHub
parent 72fb041382
commit 2263f1396b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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()