We might want to reconsider these:
|
for unknown in unknown_args: |
|
print( # noqa |
|
f"Warning: Unexpected command-line argument {unknown} found.", |
|
file=sys.stderr, |
|
) |
It's entirely possible someone is doing argument parsing by themselves, so these don't help.
We might want to reconsider these:
valohai-utils/valohai/internals/global_state_loader.py
Lines 111 to 115 in 223cb2b
It's entirely possible someone is doing argument parsing by themselves, so these don't help.