-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the ability to use other instances of the mystbin application. (#…
…22) * add the ability to provide a custom url for pastes * removed ANN101 and ANN102 from ruff ignore. they have been removed from ruff checks, and as such are no longer needed * updated my code to directly patch Route objects, rather than adding that as another parameter * Improved how api_base is implemented. Made it more natural - it can end in a / or not. Also fixed some bugs as a result of not adding api_base to __slots__ of HTTPClient.
- Loading branch information
1 parent
95ae7d2
commit 42036aa
Showing
6 changed files
with
44 additions
and
23 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 |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
.idea/ | ||
docs/build | ||
dist/ | ||
.ruff_cache/ |
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
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
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 |
---|---|---|
|
@@ -95,8 +95,6 @@ ignore = [ | |
"SIM105", | ||
"UP034", | ||
"UP038", | ||
"ANN101", | ||
"ANN102", | ||
"ANN401", | ||
] | ||
|
||
|