Myeongseon Choi

Results 10 comments of Myeongseon Choi

When we upgrade clap from v2.34 to v3, we cannot parse anymore multiple argument when the first argument is attached to short flag. It make test_quopri.py fail. I asked it...

When we upgrade clap from v2.34 to v3, we cannot parse anymore multiple argument when the first argument is attached to short flag. It make test_quopri.py fail. I asked it...

I try to change `parse_args` function in `ArgumentList` ```lalrpop ArgumentList: ArgumentList = { =>? { let arg_list = parse_args(e)?; Ok(arg_list) } }; ``` First, I checked whether the generator expression...

I found `-m quopri -d` is working for both v2 and v3. (`-d` is a hyphen value for the argument `"m"`) But `-mquopri -d` is working only for v2. If...

@fanninpm I understand your two examples are equivalent. The reason why I cannot change the way of passing arguments is because it is in unittests of rustpython. Thus I need...

Additional error. Differ from the minimal code, actually I'm using the Objective class and want to use decorator for __call__ function of the class. `track_in_mlflow` decorator assumes that the argument...

It's quite late, but in my use, I saved ligand_center in [inference_utils.py](https://github.com/gcorso/DiffDock/blob/bc6b5151457ea5304ee69779d92de0fded599a2c/utils/inference_utils.py#L269), and remove random_init function from [inference.py](https://github.com/gcorso/DiffDock/blob/bc6b5151457ea5304ee69779d92de0fded599a2c/inference.py#L134) and set the initial position to `ligand_center - protein_center`

I try to change `parse_args` function in `ArgumentList` ```lalrpop ArgumentList: ArgumentList = { =>? { let arg_list = parse_args(e)?; Ok(arg_list) } }; ``` First, I checked whether the generator expression...

I found that SyntaxError occurs in CPython v3.11.10 and it resolve in CPython v3.12.0. update between them be a reason, but I don't know which is the one, parser? or...

I'm trying to update test_fstring.py and realize there are a lot of todo here.