dependabot[bot]
32fab1e5f4
Bump yt-dlp from 2023.7.6 to 2023.9.24 in /Bot
...
Bumps [yt-dlp](https://github.com/yt-dlp/yt-dlp ) from 2023.7.6 to 2023.9.24.
- [Release notes](https://github.com/yt-dlp/yt-dlp/releases )
- [Changelog](https://github.com/yt-dlp/yt-dlp/blob/master/Changelog.md )
- [Commits](https://github.com/yt-dlp/yt-dlp/compare/2023.07.06...2023.09.24 )
---
updated-dependencies:
- dependency-name: yt-dlp
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
2023-10-03 11:08:49 +00:00
f955cc3adc
Yeet database
2023-09-12 12:29:36 +01:00
666cdb113e
I think this is all now
2023-09-12 12:24:53 +01:00
0ea8ab8cf1
Run please
2023-09-12 12:13:44 +01:00
b53e58bd0d
Will this pain ever end?
2023-09-12 11:59:16 +01:00
bd55d6f5e0
Errors importing
2023-09-12 11:54:38 +01:00
0e46aaaac8
Remove unneeded packages
2023-09-12 11:50:00 +01:00
3ed6658423
I love docker :3
2023-09-12 11:47:49 +01:00
b7f030826e
Test Poetry in docker
2023-09-12 11:46:15 +01:00
3ef74850a5
Merge remote-tracking branch 'origin/main'
2023-09-12 11:42:59 +01:00
3cc51d4bbf
Fix Dockerfile
2023-09-12 11:42:54 +01:00
33d9403412
Merge pull request #19 from Fluffy-Bean/deepsource-transform-b79526e7
...
format code with black
2023-09-12 11:33:42 +01:00
deepsource-io[bot]
964fbcc879
ci: Update .deepsource.toml
2023-09-12 10:33:18 +00:00
deepsource-autofix[bot]
f0b002b9fb
style: format code with black
...
Format code with black
This commit fixes the style issues introduced in d28a759
according to the output
from Black.
Details: None
2023-09-12 10:32:58 +00:00
d28a759f8e
Add Dockerfile
...
Update blacklist
Clean up e621 code
2023-09-12 11:32:34 +01:00
dbe660ded9
Merge pull request #18 from Fluffy-Bean/deepsource-transform-16634351
...
format code with black
2023-09-11 23:35:10 +01:00
deepsource-autofix[bot]
fb35c71677
style: format code with black
...
Format code with black
This commit fixes the style issues introduced in 5266b4b
according to the output
from Black.
Details: None
2023-09-11 22:34:57 +00:00
5266b4bf40
Merge remote-tracking branch 'origin/main'
2023-09-11 23:34:40 +01:00
9f00d945ae
Line too long
2023-09-11 23:34:34 +01:00
9b4d44f142
Merge pull request #17 from Fluffy-Bean/deepsource-transform-614273da
...
format code with black
2023-09-11 23:33:27 +01:00
deepsource-autofix[bot]
e1710a461f
style: format code with black
...
Format code with black
This commit fixes the style issues introduced in dae2d49
according to the output
from Black.
Details: None
2023-09-11 22:32:38 +00:00
dae2d4901c
Further cleanup to make Deepsource happy
2023-09-11 23:32:21 +01:00
42a41509c5
Merge remote-tracking branch 'origin/main'
...
# Conflicts:
# lynxie/config.py
2023-09-11 23:25:10 +01:00
8bcde69224
Clean up config.py and __main__.py
2023-09-11 23:24:24 +01:00
8519270f2b
Merge pull request #16 from Fluffy-Bean/deepsource-autofix-eb689216
...
remove unnecessary f-string
2023-09-11 22:26:33 +01:00
33109396b2
Merge pull request #15 from Fluffy-Bean/deepsource-autofix-16d41e08
...
refactor unnecessary `else` / `elif` when `if` block has a `return` statement
2023-09-11 22:26:21 +01:00
deepsource-autofix[bot]
b541817558
refactor: remove unnecessary f-string
...
It is wasteful to use `f-string` mechanism if there are no expressions to be extrapolated. It is recommended to use regular strings instead.
2023-09-11 21:25:43 +00:00
deepsource-autofix[bot]
678a659dda
refactor: refactor unnecessary else
/ elif
when if
block has a return
statement
...
The use of `else` or `elif` becomes redundant and can be dropped if the last statement under the leading `if` / `elif` block is a `return` statement.
In the case of an `elif` after `return`, it can be written as a separate `if` block.
For `else` blocks after `return`, the statements can be shifted out of `else`. Please refer to the examples below for reference.
Refactoring the code this way can improve code-readability and make it easier to maintain.
2023-09-11 21:25:19 +00:00
7b3d0cb1ae
Merge pull request #14 from Fluffy-Bean/deepsource-transform-d96820e8
...
format code with black
2023-09-11 20:10:07 +01:00
deepsource-autofix[bot]
6b1fee77f0
style: format code with black
...
Format code with black
This commit fixes the style issues introduced in 960f452
according to the output
from Black.
Details: None
2023-09-11 18:38:34 +00:00
960f452e4a
Shitload of new overlays
...
E621 search with blacklist
2023-09-11 19:38:11 +01:00
cc87c3e0ba
Merge pull request #13 from Fluffy-Bean/deepsource-autofix-4c5a2b0f
...
remove unnecessary f-string
2023-09-10 15:12:37 +01:00
168f1d6d91
Merge pull request #12 from Fluffy-Bean/deepsource-autofix-fd1f8ba6
...
remove unused imports
2023-09-10 15:12:24 +01:00
e4b223f28d
Merge pull request #11 from Fluffy-Bean/deepsource-autofix-c54f377b
...
delete unreachable statements
2023-09-10 15:12:13 +01:00
deepsource-autofix[bot]
dfa2820b40
refactor: remove unnecessary f-string
...
It is wasteful to use `f-string` mechanism if there are no expressions to be extrapolated. It is recommended to use regular strings instead.
2023-09-10 14:11:53 +00:00
deepsource-autofix[bot]
fec670ecb6
style: Format code with black
2023-09-10 14:11:23 +00:00
deepsource-autofix[bot]
a8eb5e09a0
refactor: remove unused imports
...
An object has been imported but is not used anywhere in the file.
It should either be used or the import should be removed.
2023-09-10 14:11:13 +00:00
deepsource-autofix[bot]
9789305706
refactor: delete unreachable statements
...
This statement is unreachable, as the control flow will never reach upto this point. Consider removing this part of code or re-evaluating the control flow.
2023-09-10 14:10:38 +00:00
14a9516a39
Merge pull request #10 from Fluffy-Bean/deepsource-transform-b369cbfa
...
format code with black
2023-09-09 20:52:47 +01:00
deepsource-autofix[bot]
b3bd795e84
style: format code with black
...
Format code with black
This commit fixes the style issues introduced in c359356
according to the output
from Black.
Details: None
2023-09-09 19:52:26 +00:00
c359356f4b
Clean up code
2023-09-09 20:52:12 +01:00
90a347eb0b
Merge pull request #9 from Fluffy-Bean/deepsource-transform-f8579877
...
format code with black
2023-09-09 13:21:19 +01:00
deepsource-autofix[bot]
94f4542135
style: format code with black
...
Format code with black
This commit fixes the style issues introduced in ccc34e8
according to the output
from Black.
Details: None
2023-09-09 12:20:50 +00:00
ccc34e8a35
Saveable command
...
Liveleak
2023-09-09 13:20:35 +01:00
60d1aaa13d
Merge pull request #8 from Fluffy-Bean/deepsource-transform-76bdbef5
...
format code with black
2023-09-09 12:29:05 +01:00
deepsource-autofix[bot]
dd8f0725e9
style: format code with black
...
Format code with black
This commit fixes the style issues introduced in f0f3d3b
according to the output
from Black.
Details: None
2023-09-09 11:28:35 +00:00
f0f3d3b1d3
Add more overlay options
2023-09-09 12:28:19 +01:00
7e108350a5
Merge pull request #6 from Fluffy-Bean/deepsource-transform-513ba6f2
...
format code with black
2023-09-09 00:49:30 +01:00
c9fdd818bf
Merge pull request #7 from Fluffy-Bean/deepsource-autofix-49797130
...
refactor unnecessary `else` / `elif` when `if` block has a `raise` statement
2023-09-09 00:49:15 +01:00
deepsource-autofix[bot]
ed8a415e43
style: Format code with black
2023-09-08 23:47:30 +00:00