Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -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"]
6 changes: 2 additions & 4 deletions modules/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@


def splash():
print(
"""
print("""
o o o o
O .oOOo. O O O
O O o o o
Expand All @@ -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):
Expand Down