mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-09-11 07:34:45 +08:00
[pre-commit.ci] pre-commit autoupdate (#430)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 23.9.1 → 23.10.1](https://github.com/psf/black/compare/23.9.1...23.10.1) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
24ba90ffea
commit
db8b5d55d7
9 changed files with 9 additions and 1 deletions
|
@ -41,7 +41,7 @@ repos:
|
|||
- id: pyupgrade
|
||||
args: [--py3-plus]
|
||||
- repo: https://github.com/psf/black
|
||||
rev: 23.9.1
|
||||
rev: 23.10.1
|
||||
hooks:
|
||||
- id: black
|
||||
language_version: python3
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Apprise notification class"""
|
||||
|
||||
import time
|
||||
|
||||
from modules import util
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Module for BeyondHD (BHD) tracker."""
|
||||
|
||||
from json import JSONDecodeError
|
||||
|
||||
from modules import util
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Config class for qBittorrent-Manage"""
|
||||
|
||||
import os
|
||||
import re
|
||||
import stat
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Logging module"""
|
||||
|
||||
import io
|
||||
import logging
|
||||
import os
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Qbittorrent Module"""
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
""" Utility functions for qBit Manage. """
|
||||
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Class to handle webhooks."""
|
||||
|
||||
import time
|
||||
from json import JSONDecodeError
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ You can also allow incomplete torrents to be deleted.
|
|||
Torrents will be deleted starting with the ones with the most seeds, only torrents with a single hardlink will be deleted.
|
||||
Only torrents on configured drive path will be deleted. To monitor multiple drives, use multiple copies of this script.
|
||||
"""
|
||||
|
||||
import os
|
||||
import shutil
|
||||
import time
|
||||
|
|
Loading…
Add table
Reference in a new issue