mirror of
https://github.com/optim-enterprises-bv/patroni.git
synced 2025-12-31 02:40:56 +00:00
Besides that: 1. Introduce `setup.py isort` for quick check 2. Introduce GH actions to check imports
7 lines
148 B
Python
Executable File
7 lines
148 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
with open("data/{0}/{0}_cb.log".format(sys.argv[1]), "a+") as log:
|
|
log.write(" ".join(sys.argv[-3:]) + "\n")
|