Skip to content

Commit

Permalink
#26
Browse files Browse the repository at this point in the history
#26
  • Loading branch information
ruslansenatorov committed Nov 3, 2024
1 parent bc9aeff commit bbdc3d3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ body:
value: >
<p>Attention! </p>
<b>We insert an error message from the terminal into the name of the issues!</b>
- type: checkboxes
id: checks
attributes:
label: Checklist
description: "Please confirm the following:"
options:
- label: I added a descriptive title.
required: true
required: true
- label: I searched through [existing issues](https://t.me/c/1937296927/3602/25534) and couldn't find a solution or duplicate issue.
required: true
- label: I searched on the web (e.g. Google) or [chatGPT](https://t.me/c/1937296927/2415/23729) and didn't find any helpful information.
required: true

- type: input
attributes:
label: "Hash commit / link"
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Byte-compiled / optimized / DLL files
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
Expand Down
22 changes: 11 additions & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
repos:
repos:
- repo: https://github.com/PyCQA/docformatter
rev: "eb1df347edd128b30cd3368dddc3aa65edcfac38"
hooks:
Expand Down Expand Up @@ -32,9 +32,9 @@ repos:
rev: "5.13.2"
hooks:
- id: isort
args:
- --check
- --float-to-top
args:
- --check
- --float-to-top
- repo: https://github.com/nbQA-dev/nbQA
rev: "1.9.0"
hooks:
Expand Down Expand Up @@ -64,9 +64,9 @@ repos:
require_serial: true
types_or: [jupyter, markdown]
additional_dependencies: [isort]
args:
- --check
- --float-to-top
args:
- --check
- --float-to-top

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v5.0.0"
Expand All @@ -93,7 +93,7 @@ repos:
hooks:
- id: nbqa-flake8
args:
- --ignore=E501,E712,W291,F632,E203,F821,F403
- --ignore=E501,E712,W291,F632,E203,F821,F403,W391
- --exclude=.*,__init__.py
name: nbqa-flake8
description: Run 'flake8' on a Jupyter Notebook
Expand All @@ -111,7 +111,7 @@ repos:
hooks:
- id: flake8
args:
- --ignore=E501,E712,W291,F632,E203,F821,F403
- --ignore=E501,E712,W291,F632,E203,F821,F403,W391
- --exclude=.*,__init__.py
additional_dependencies:
- flake8-variables-names
Expand Down Expand Up @@ -216,7 +216,7 @@ repos:
- --ignore=no_check*,__init__.py
- --max-line-length=79
- --const-naming-style=any
- --disable=E0401,W0104,R0903,R1721,E1101,E0611,F0002
- --disable=E0401,W0104,R0903,R1721,E1101,E0611,F0002,C0305


- repo: https://github.com/pre-commit/mirrors-pylint
Expand All @@ -232,7 +232,7 @@ repos:
"--ignore=no_check*,__init__.py",
"--max-line-length=79",
"--const-naming-style=any",
"--disable=E0401,W0104,R0903,R1721,E1101,E0611,F0002"
"--disable=E0401,W0104,R0903,R1721,E1101,E0611,F0002,C0305"
]
additional_dependencies: [pylint]

Expand Down

0 comments on commit bbdc3d3

Please sign in to comment.