forked from Taiko2k/Tauon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pyproject.toml: Add support for Pyright, define _ as a builtin, add R…
…uff ignores (Taiko2k#1288) * pyproject.toml: Add support for Pyright, define _ as a builtin, add some Ruff linter ignores * pyproject.toml: Bump minimum version to 3.10 as we hard depend on it for match, sort requirements and add opt reqs
- Loading branch information
Showing
6 changed files
with
95 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# See pyproject.toml note about this file | ||
def _(text: str) -> str: ... | ||
# Alternate global without type: | ||
#_ = ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
Pillow | ||
pylast>=3.1.0 | ||
PySDL2 | ||
Send2Trash | ||
requests | ||
beautifulsoup4 | ||
PlexAPI | ||
dbus-python | ||
musicbrainzngs | ||
unidecode | ||
setproctitle | ||
mutagen | ||
natsort | ||
PyGObject | ||
dbus-python | ||
opencc | ||
Pillow | ||
PlexAPI | ||
PyGObject | ||
pylast>=3.1.0 | ||
PySDL2 | ||
requests | ||
Send2Trash | ||
setproctitle | ||
unidecode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
jxlpy | ||
PyChromecast | ||
tekore | ||
tidalapi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
class Holder: | ||
pass | ||
pass | ||
|
||
|
||
holder = Holder() |