From feaf70d61ade39fc7e5616625d5aaacd80b818a1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:16:15 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/pre-commit/pre-commit-hooks: v4.5.0 → v6.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.5.0...v6.0.0) - https://github.com/psf/black → https://github.com/psf/black-pre-commit-mirror - [github.com/psf/black-pre-commit-mirror: 23.11.0 → 26.1.0](https://github.com/psf/black-pre-commit-mirror/compare/23.11.0...26.1.0) - [github.com/pycqa/flake8: 6.1.0 → 7.3.0](https://github.com/pycqa/flake8/compare/6.1.0...7.3.0) - [github.com/pycqa/isort: 5.12.0 → 7.0.0](https://github.com/pycqa/isort/compare/5.12.0...7.0.0) --- .pre-commit-config.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7160425..cfccad1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,24 +1,24 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v6.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-yaml - id: check-added-large-files args: ['--maxkb=2000'] -- repo: https://github.com/psf/black - rev: 23.11.0 +- repo: https://github.com/psf/black-pre-commit-mirror + rev: 26.1.0 hooks: - id: black args: ["--line-length", "140"] - repo: https://github.com/pycqa/flake8 - rev: 6.1.0 + rev: 7.3.0 hooks: - id: flake8 args: ["--ignore=E722,E501"] - repo: https://github.com/pycqa/isort - rev: 5.12.0 + rev: 7.0.0 hooks: - id: isort args: ["--profile", "black", "--filter-files"] From 3c0f2ac3b962a4aa0d53300e1836efa5b01b3bb0 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:16:23 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- modules/logger.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/logger.py b/modules/logger.py index 865c8cf..626a0c5 100644 --- a/modules/logger.py +++ b/modules/logger.py @@ -2,8 +2,7 @@ def splash(): - print( - """ + print(""" o o o o O .oOOo. O O O O O o o o @@ -14,8 +13,7 @@ def splash(): `Oo'oO' `OoO' `OoO' oOoOoO `OoO' O o `OoO' Oo Oo --------------------------------------------------- v0.1.2 @ejedev - """ - ) + """) def log(message: str, type: types.Status = types.Status.NONE, verbose: bool = False, verbosity: bool = False):