Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .chock/bin/antigravity.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,6 +601,8 @@ def degrade(decision, event):
# >>> agentseam handler >>>
GUARD_VIOLATION = 1

PYTHON_SUFFIX = '.py'

_BASH_CANDIDATES = ('bash', 'C:\\Program Files\\Git\\usr\\bin\\bash.exe', 'C:\\Program Files\\Git\\bin\\bash.exe', 'C:\\Program Files (x86)\\Git\\usr\\bin\\bash.exe', '/bin/bash', '/usr/bin/bash')

GATE_LOG_ENV = 'CHOCK_GATE_LOG'
Expand Down Expand Up @@ -640,6 +642,12 @@ def find_bash(guard: _chock_Path) -> str | None:
return candidate
return None

def find_interpreter(guard: _chock_Path) -> str | None:
"""The interpreter that can run `guard`: this Python for `.py`, otherwise a usable bash."""
if guard.suffix == PYTHON_SUFFIX:
return sys.executable or None
return find_bash(guard)

def run_guard(guard: _chock_Path, command: str) -> str:
"""`GUARD_BLOCKED` / `GUARD_CLEAN` when the guard ran, otherwise why it did not."""
try:
Expand All @@ -649,13 +657,13 @@ def run_guard(guard: _chock_Path, command: str) -> str:
return GUARD_UNCHECKED
if not args:
return GUARD_UNCHECKED
bash = find_bash(guard)
if bash is None:
print(f'chock: no usable bash found, {guard.name} not checked', file=sys.stderr)
interpreter = find_interpreter(guard)
if interpreter is None:
print(f'chock: no usable interpreter found, {guard.name} not checked', file=sys.stderr)
return GUARD_UNCHECKED
try:
env = {**_chock_os.environ, 'CHOCK_RAW_COMMAND': command}
proc = _chock_subprocess.run([bash, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
proc = _chock_subprocess.run([interpreter, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
except _chock_subprocess.TimeoutExpired:
print(f'chock: guard timed out after {_GUARD_TIMEOUT_SECONDS}s, not checked', file=sys.stderr)
return GUARD_ERRORED
Expand Down
16 changes: 12 additions & 4 deletions .chock/bin/claude_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,8 @@ def degrade(decision, event):
# >>> agentseam handler >>>
GUARD_VIOLATION = 1

PYTHON_SUFFIX = '.py'

_BASH_CANDIDATES = ('bash', 'C:\\Program Files\\Git\\usr\\bin\\bash.exe', 'C:\\Program Files\\Git\\bin\\bash.exe', 'C:\\Program Files (x86)\\Git\\usr\\bin\\bash.exe', '/bin/bash', '/usr/bin/bash')

GATE_LOG_ENV = 'CHOCK_GATE_LOG'
Expand Down Expand Up @@ -703,6 +705,12 @@ def find_bash(guard: _chock_Path) -> str | None:
return candidate
return None

def find_interpreter(guard: _chock_Path) -> str | None:
"""The interpreter that can run `guard`: this Python for `.py`, otherwise a usable bash."""
if guard.suffix == PYTHON_SUFFIX:
return sys.executable or None
return find_bash(guard)

def run_guard(guard: _chock_Path, command: str) -> str:
"""`GUARD_BLOCKED` / `GUARD_CLEAN` when the guard ran, otherwise why it did not."""
try:
Expand All @@ -712,13 +720,13 @@ def run_guard(guard: _chock_Path, command: str) -> str:
return GUARD_UNCHECKED
if not args:
return GUARD_UNCHECKED
bash = find_bash(guard)
if bash is None:
print(f'chock: no usable bash found, {guard.name} not checked', file=sys.stderr)
interpreter = find_interpreter(guard)
if interpreter is None:
print(f'chock: no usable interpreter found, {guard.name} not checked', file=sys.stderr)
return GUARD_UNCHECKED
try:
env = {**_chock_os.environ, 'CHOCK_RAW_COMMAND': command}
proc = _chock_subprocess.run([bash, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
proc = _chock_subprocess.run([interpreter, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
except _chock_subprocess.TimeoutExpired:
print(f'chock: guard timed out after {_GUARD_TIMEOUT_SECONDS}s, not checked', file=sys.stderr)
return GUARD_ERRORED
Expand Down
16 changes: 12 additions & 4 deletions .chock/bin/codex_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,8 @@ def degrade(decision, event):
# >>> agentseam handler >>>
GUARD_VIOLATION = 1

PYTHON_SUFFIX = '.py'

_BASH_CANDIDATES = ('bash', 'C:\\Program Files\\Git\\usr\\bin\\bash.exe', 'C:\\Program Files\\Git\\bin\\bash.exe', 'C:\\Program Files (x86)\\Git\\usr\\bin\\bash.exe', '/bin/bash', '/usr/bin/bash')

GATE_LOG_ENV = 'CHOCK_GATE_LOG'
Expand Down Expand Up @@ -689,6 +691,12 @@ def find_bash(guard: _chock_Path) -> str | None:
return candidate
return None

def find_interpreter(guard: _chock_Path) -> str | None:
"""The interpreter that can run `guard`: this Python for `.py`, otherwise a usable bash."""
if guard.suffix == PYTHON_SUFFIX:
return sys.executable or None
return find_bash(guard)

def run_guard(guard: _chock_Path, command: str) -> str:
"""`GUARD_BLOCKED` / `GUARD_CLEAN` when the guard ran, otherwise why it did not."""
try:
Expand All @@ -698,13 +706,13 @@ def run_guard(guard: _chock_Path, command: str) -> str:
return GUARD_UNCHECKED
if not args:
return GUARD_UNCHECKED
bash = find_bash(guard)
if bash is None:
print(f'chock: no usable bash found, {guard.name} not checked', file=sys.stderr)
interpreter = find_interpreter(guard)
if interpreter is None:
print(f'chock: no usable interpreter found, {guard.name} not checked', file=sys.stderr)
return GUARD_UNCHECKED
try:
env = {**_chock_os.environ, 'CHOCK_RAW_COMMAND': command}
proc = _chock_subprocess.run([bash, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
proc = _chock_subprocess.run([interpreter, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
except _chock_subprocess.TimeoutExpired:
print(f'chock: guard timed out after {_GUARD_TIMEOUT_SECONDS}s, not checked', file=sys.stderr)
return GUARD_ERRORED
Expand Down
16 changes: 12 additions & 4 deletions .chock/bin/cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,8 @@ def degrade(decision, event):
# >>> agentseam handler >>>
GUARD_VIOLATION = 1

PYTHON_SUFFIX = '.py'

_BASH_CANDIDATES = ('bash', 'C:\\Program Files\\Git\\usr\\bin\\bash.exe', 'C:\\Program Files\\Git\\bin\\bash.exe', 'C:\\Program Files (x86)\\Git\\usr\\bin\\bash.exe', '/bin/bash', '/usr/bin/bash')

GATE_LOG_ENV = 'CHOCK_GATE_LOG'
Expand Down Expand Up @@ -595,6 +597,12 @@ def find_bash(guard: _chock_Path) -> str | None:
return candidate
return None

def find_interpreter(guard: _chock_Path) -> str | None:
"""The interpreter that can run `guard`: this Python for `.py`, otherwise a usable bash."""
if guard.suffix == PYTHON_SUFFIX:
return sys.executable or None
return find_bash(guard)

def run_guard(guard: _chock_Path, command: str) -> str:
"""`GUARD_BLOCKED` / `GUARD_CLEAN` when the guard ran, otherwise why it did not."""
try:
Expand All @@ -604,13 +612,13 @@ def run_guard(guard: _chock_Path, command: str) -> str:
return GUARD_UNCHECKED
if not args:
return GUARD_UNCHECKED
bash = find_bash(guard)
if bash is None:
print(f'chock: no usable bash found, {guard.name} not checked', file=sys.stderr)
interpreter = find_interpreter(guard)
if interpreter is None:
print(f'chock: no usable interpreter found, {guard.name} not checked', file=sys.stderr)
return GUARD_UNCHECKED
try:
env = {**_chock_os.environ, 'CHOCK_RAW_COMMAND': command}
proc = _chock_subprocess.run([bash, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
proc = _chock_subprocess.run([interpreter, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
except _chock_subprocess.TimeoutExpired:
print(f'chock: guard timed out after {_GUARD_TIMEOUT_SECONDS}s, not checked', file=sys.stderr)
return GUARD_ERRORED
Expand Down
16 changes: 12 additions & 4 deletions .chock/bin/devin.py
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,8 @@ def degrade(decision, event):
# >>> agentseam handler >>>
GUARD_VIOLATION = 1

PYTHON_SUFFIX = '.py'

_BASH_CANDIDATES = ('bash', 'C:\\Program Files\\Git\\usr\\bin\\bash.exe', 'C:\\Program Files\\Git\\bin\\bash.exe', 'C:\\Program Files (x86)\\Git\\usr\\bin\\bash.exe', '/bin/bash', '/usr/bin/bash')

GATE_LOG_ENV = 'CHOCK_GATE_LOG'
Expand Down Expand Up @@ -671,6 +673,12 @@ def find_bash(guard: _chock_Path) -> str | None:
return candidate
return None

def find_interpreter(guard: _chock_Path) -> str | None:
"""The interpreter that can run `guard`: this Python for `.py`, otherwise a usable bash."""
if guard.suffix == PYTHON_SUFFIX:
return sys.executable or None
return find_bash(guard)

def run_guard(guard: _chock_Path, command: str) -> str:
"""`GUARD_BLOCKED` / `GUARD_CLEAN` when the guard ran, otherwise why it did not."""
try:
Expand All @@ -680,13 +688,13 @@ def run_guard(guard: _chock_Path, command: str) -> str:
return GUARD_UNCHECKED
if not args:
return GUARD_UNCHECKED
bash = find_bash(guard)
if bash is None:
print(f'chock: no usable bash found, {guard.name} not checked', file=sys.stderr)
interpreter = find_interpreter(guard)
if interpreter is None:
print(f'chock: no usable interpreter found, {guard.name} not checked', file=sys.stderr)
return GUARD_UNCHECKED
try:
env = {**_chock_os.environ, 'CHOCK_RAW_COMMAND': command}
proc = _chock_subprocess.run([bash, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
proc = _chock_subprocess.run([interpreter, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
except _chock_subprocess.TimeoutExpired:
print(f'chock: guard timed out after {_GUARD_TIMEOUT_SECONDS}s, not checked', file=sys.stderr)
return GUARD_ERRORED
Expand Down
16 changes: 12 additions & 4 deletions .chock/bin/gemini_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,8 @@ def degrade(decision, event):
# >>> agentseam handler >>>
GUARD_VIOLATION = 1

PYTHON_SUFFIX = '.py'

_BASH_CANDIDATES = ('bash', 'C:\\Program Files\\Git\\usr\\bin\\bash.exe', 'C:\\Program Files\\Git\\bin\\bash.exe', 'C:\\Program Files (x86)\\Git\\usr\\bin\\bash.exe', '/bin/bash', '/usr/bin/bash')

GATE_LOG_ENV = 'CHOCK_GATE_LOG'
Expand Down Expand Up @@ -671,6 +673,12 @@ def find_bash(guard: _chock_Path) -> str | None:
return candidate
return None

def find_interpreter(guard: _chock_Path) -> str | None:
"""The interpreter that can run `guard`: this Python for `.py`, otherwise a usable bash."""
if guard.suffix == PYTHON_SUFFIX:
return sys.executable or None
return find_bash(guard)

def run_guard(guard: _chock_Path, command: str) -> str:
"""`GUARD_BLOCKED` / `GUARD_CLEAN` when the guard ran, otherwise why it did not."""
try:
Expand All @@ -680,13 +688,13 @@ def run_guard(guard: _chock_Path, command: str) -> str:
return GUARD_UNCHECKED
if not args:
return GUARD_UNCHECKED
bash = find_bash(guard)
if bash is None:
print(f'chock: no usable bash found, {guard.name} not checked', file=sys.stderr)
interpreter = find_interpreter(guard)
if interpreter is None:
print(f'chock: no usable interpreter found, {guard.name} not checked', file=sys.stderr)
return GUARD_UNCHECKED
try:
env = {**_chock_os.environ, 'CHOCK_RAW_COMMAND': command}
proc = _chock_subprocess.run([bash, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
proc = _chock_subprocess.run([interpreter, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
except _chock_subprocess.TimeoutExpired:
print(f'chock: guard timed out after {_GUARD_TIMEOUT_SECONDS}s, not checked', file=sys.stderr)
return GUARD_ERRORED
Expand Down
16 changes: 12 additions & 4 deletions .chock/bin/grok.py
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,8 @@ def degrade(decision, event):
# >>> agentseam handler >>>
GUARD_VIOLATION = 1

PYTHON_SUFFIX = '.py'

_BASH_CANDIDATES = ('bash', 'C:\\Program Files\\Git\\usr\\bin\\bash.exe', 'C:\\Program Files\\Git\\bin\\bash.exe', 'C:\\Program Files (x86)\\Git\\usr\\bin\\bash.exe', '/bin/bash', '/usr/bin/bash')

GATE_LOG_ENV = 'CHOCK_GATE_LOG'
Expand Down Expand Up @@ -654,6 +656,12 @@ def find_bash(guard: _chock_Path) -> str | None:
return candidate
return None

def find_interpreter(guard: _chock_Path) -> str | None:
"""The interpreter that can run `guard`: this Python for `.py`, otherwise a usable bash."""
if guard.suffix == PYTHON_SUFFIX:
return sys.executable or None
return find_bash(guard)

def run_guard(guard: _chock_Path, command: str) -> str:
"""`GUARD_BLOCKED` / `GUARD_CLEAN` when the guard ran, otherwise why it did not."""
try:
Expand All @@ -663,13 +671,13 @@ def run_guard(guard: _chock_Path, command: str) -> str:
return GUARD_UNCHECKED
if not args:
return GUARD_UNCHECKED
bash = find_bash(guard)
if bash is None:
print(f'chock: no usable bash found, {guard.name} not checked', file=sys.stderr)
interpreter = find_interpreter(guard)
if interpreter is None:
print(f'chock: no usable interpreter found, {guard.name} not checked', file=sys.stderr)
return GUARD_UNCHECKED
try:
env = {**_chock_os.environ, 'CHOCK_RAW_COMMAND': command}
proc = _chock_subprocess.run([bash, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
proc = _chock_subprocess.run([interpreter, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
except _chock_subprocess.TimeoutExpired:
print(f'chock: guard timed out after {_GUARD_TIMEOUT_SECONDS}s, not checked', file=sys.stderr)
return GUARD_ERRORED
Expand Down
16 changes: 12 additions & 4 deletions .chock/bin/tabnine.py
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,8 @@ def degrade(decision, event):
# >>> agentseam handler >>>
GUARD_VIOLATION = 1

PYTHON_SUFFIX = '.py'

_BASH_CANDIDATES = ('bash', 'C:\\Program Files\\Git\\usr\\bin\\bash.exe', 'C:\\Program Files\\Git\\bin\\bash.exe', 'C:\\Program Files (x86)\\Git\\usr\\bin\\bash.exe', '/bin/bash', '/usr/bin/bash')

GATE_LOG_ENV = 'CHOCK_GATE_LOG'
Expand Down Expand Up @@ -654,6 +656,12 @@ def find_bash(guard: _chock_Path) -> str | None:
return candidate
return None

def find_interpreter(guard: _chock_Path) -> str | None:
"""The interpreter that can run `guard`: this Python for `.py`, otherwise a usable bash."""
if guard.suffix == PYTHON_SUFFIX:
return sys.executable or None
return find_bash(guard)

def run_guard(guard: _chock_Path, command: str) -> str:
"""`GUARD_BLOCKED` / `GUARD_CLEAN` when the guard ran, otherwise why it did not."""
try:
Expand All @@ -663,13 +671,13 @@ def run_guard(guard: _chock_Path, command: str) -> str:
return GUARD_UNCHECKED
if not args:
return GUARD_UNCHECKED
bash = find_bash(guard)
if bash is None:
print(f'chock: no usable bash found, {guard.name} not checked', file=sys.stderr)
interpreter = find_interpreter(guard)
if interpreter is None:
print(f'chock: no usable interpreter found, {guard.name} not checked', file=sys.stderr)
return GUARD_UNCHECKED
try:
env = {**_chock_os.environ, 'CHOCK_RAW_COMMAND': command}
proc = _chock_subprocess.run([bash, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
proc = _chock_subprocess.run([interpreter, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
except _chock_subprocess.TimeoutExpired:
print(f'chock: guard timed out after {_GUARD_TIMEOUT_SECONDS}s, not checked', file=sys.stderr)
return GUARD_ERRORED
Expand Down
16 changes: 12 additions & 4 deletions .chock/bin/vscode_copilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,8 @@ def degrade(decision, event):
# >>> agentseam handler >>>
GUARD_VIOLATION = 1

PYTHON_SUFFIX = '.py'

_BASH_CANDIDATES = ('bash', 'C:\\Program Files\\Git\\usr\\bin\\bash.exe', 'C:\\Program Files\\Git\\bin\\bash.exe', 'C:\\Program Files (x86)\\Git\\usr\\bin\\bash.exe', '/bin/bash', '/usr/bin/bash')

GATE_LOG_ENV = 'CHOCK_GATE_LOG'
Expand Down Expand Up @@ -499,6 +501,12 @@ def find_bash(guard: _chock_Path) -> str | None:
return candidate
return None

def find_interpreter(guard: _chock_Path) -> str | None:
"""The interpreter that can run `guard`: this Python for `.py`, otherwise a usable bash."""
if guard.suffix == PYTHON_SUFFIX:
return sys.executable or None
return find_bash(guard)

def run_guard(guard: _chock_Path, command: str) -> str:
"""`GUARD_BLOCKED` / `GUARD_CLEAN` when the guard ran, otherwise why it did not."""
try:
Expand All @@ -508,13 +516,13 @@ def run_guard(guard: _chock_Path, command: str) -> str:
return GUARD_UNCHECKED
if not args:
return GUARD_UNCHECKED
bash = find_bash(guard)
if bash is None:
print(f'chock: no usable bash found, {guard.name} not checked', file=sys.stderr)
interpreter = find_interpreter(guard)
if interpreter is None:
print(f'chock: no usable interpreter found, {guard.name} not checked', file=sys.stderr)
return GUARD_UNCHECKED
try:
env = {**_chock_os.environ, 'CHOCK_RAW_COMMAND': command}
proc = _chock_subprocess.run([bash, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
proc = _chock_subprocess.run([interpreter, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
except _chock_subprocess.TimeoutExpired:
print(f'chock: guard timed out after {_GUARD_TIMEOUT_SECONDS}s, not checked', file=sys.stderr)
return GUARD_ERRORED
Expand Down
16 changes: 12 additions & 4 deletions .chock/bin/windsurf.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,8 @@ def degrade(decision, event):
# >>> agentseam handler >>>
GUARD_VIOLATION = 1

PYTHON_SUFFIX = '.py'

_BASH_CANDIDATES = ('bash', 'C:\\Program Files\\Git\\usr\\bin\\bash.exe', 'C:\\Program Files\\Git\\bin\\bash.exe', 'C:\\Program Files (x86)\\Git\\usr\\bin\\bash.exe', '/bin/bash', '/usr/bin/bash')

GATE_LOG_ENV = 'CHOCK_GATE_LOG'
Expand Down Expand Up @@ -570,6 +572,12 @@ def find_bash(guard: _chock_Path) -> str | None:
return candidate
return None

def find_interpreter(guard: _chock_Path) -> str | None:
"""The interpreter that can run `guard`: this Python for `.py`, otherwise a usable bash."""
if guard.suffix == PYTHON_SUFFIX:
return sys.executable or None
return find_bash(guard)

def run_guard(guard: _chock_Path, command: str) -> str:
"""`GUARD_BLOCKED` / `GUARD_CLEAN` when the guard ran, otherwise why it did not."""
try:
Expand All @@ -579,13 +587,13 @@ def run_guard(guard: _chock_Path, command: str) -> str:
return GUARD_UNCHECKED
if not args:
return GUARD_UNCHECKED
bash = find_bash(guard)
if bash is None:
print(f'chock: no usable bash found, {guard.name} not checked', file=sys.stderr)
interpreter = find_interpreter(guard)
if interpreter is None:
print(f'chock: no usable interpreter found, {guard.name} not checked', file=sys.stderr)
return GUARD_UNCHECKED
try:
env = {**_chock_os.environ, 'CHOCK_RAW_COMMAND': command}
proc = _chock_subprocess.run([bash, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
proc = _chock_subprocess.run([interpreter, str(guard), *args], capture_output=True, text=True, encoding='utf-8', errors='replace', env=env, timeout=_GUARD_TIMEOUT_SECONDS, check=False)
except _chock_subprocess.TimeoutExpired:
print(f'chock: guard timed out after {_GUARD_TIMEOUT_SECONDS}s, not checked', file=sys.stderr)
return GUARD_ERRORED
Expand Down
Loading