Python Argparse игнорирует непризнанные аргументы

# replace
args = parser.parse_args()
# with
args, unknown = parser.parse_known_args()
Benja