We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current version of the code is not compatible with Python 3.11. Specifically, individual values of enums cannot be unpacked anymore. So lines like
qtile-plasma/plasma/node.py
Line 20 in 4b57f31
and
Line 36 in 4b57f31
are no longer valid and have to be replaced with
HORIZONTAL = Orient.HORIZONTAL VERTICAL = Orient.VERTICAL
UP = Direction.UP DOWN = Direction.DOWN LEFT = Direction.LEFT RIGHT = Direction.RIGHT
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The current version of the code is not compatible with Python 3.11. Specifically, individual values of enums cannot be unpacked anymore. So lines like
qtile-plasma/plasma/node.py
Line 20 in 4b57f31
and
qtile-plasma/plasma/node.py
Line 36 in 4b57f31
are no longer valid and have to be replaced with
and
The text was updated successfully, but these errors were encountered: