Tzah Mazuz

Results 6 comments of Tzah Mazuz

**The Issue:** So the issue here as mentioned above is that getVisibleBounds is stuck in an endless loop because the parent is never null and is never a scrollable element....

Update: The problem originates from `dacite/dataclasses.py` ```python def create_instance(data_class: Type[T], init_values: Data, post_init_values: Data) -> T: instance = data_class(**init_values) for key, value in post_init_values.items(): setattr(instance, key, value) return instance ```...

Wanted to drop my hacky solution to this issue. I didn't test this too much, but it worked for me in the simple case. ```python import sys import threading from...

Right, the above is a full override of the command, I seek to merge only specific sections of the command script. EDIT: 1. To emphasize this more, I need to...

Understood, if this is complicates things and gets out of the scope of `bashly` that's fine. Feel free to close

The only "workaround" I could think of involves in adding an environment variable that can be used later in commands implementation to execute certain parts of the code only when...