Gert Hulselmans
Gert Hulselmans
When installing the latest version of gnomesome from git on Ubuntu 18.04.4 LTS, https://extensions.gnome.org/local/ displays "Error" (instead of "ON" or "OFF"). ``` $ gnome-shell --version GNOME Shell 3.28.4 ``` At...
Swap current window with master keeps only one master window when there were multiple masters before. - Create a bunch of windows e.g. : with Mod4+return - Switch to vertical/horizontal...
`dict().setdefault("key", function_to_set_default_value(value))` is much slower than first checking if the key exists and only then calling the function. Even the case where the function shouldn't be called with .set_default() (as...
`else:` and `finally:` blocks are not supported after try construct. https://www.geeksforgeeks.org/try-except-else-and-finally-in-python/ ```python ❯ cat try_except_else_finally.py # Python code to illustrate # working of try() def divide(x: int, y: int): try:...
I001 does not use human sort like `isort`. I001 also does not indicate the lines on which it finds the problem, but always mentions the first line of the file...
Differnt import sorting order between isort and ruff if import is aliased. ```python # isort --profile=black input.py $ cat /tmp/isorted_output.py from numpy import cos, int8, int16, int32, int64 from numpy...
Improve ruff linting support by configuring it properly. A lot of useful flake8 plugins are (partially) implemented in ruff now. isort and pyupgrade reimplementations are also available. Enable the following...
…by PEP8.