Skip to content

Commit dab105c

Browse files
authored
chore: added code from decompiled react and refactoring web api (#176)
* chore: added code from decompiled react and refactoring web api * fix: patches * fix: patch * fix: patches * chore: add info from new_feature_info
1 parent 9c83c77 commit dab105c

File tree

12 files changed

+950
-1145
lines changed

12 files changed

+950
-1145
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
name: Lint Commit Messages
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323
- uses: wagoid/commitlint-github-action@v5.4.4
2424
lint:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- uses: actions/checkout@v4
28-
- uses: actions/setup-python@v4
28+
- uses: actions/setup-python@v5
2929
with:
3030
python-version: "3.10"
3131
- uses: pre-commit/action@v3.0.0
@@ -42,9 +42,9 @@ jobs:
4242
- macOS-latest
4343
runs-on: ${{ matrix.os }}
4444
steps:
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v4
4646
- name: Set up Python
47-
uses: actions/setup-python@v4
47+
uses: actions/setup-python@v5
4848
with:
4949
python-version: ${{ matrix.python-version }}
5050
- uses: snok/install-poetry@v1.3.4
@@ -61,7 +61,7 @@ jobs:
6161
- test
6262

6363
steps:
64-
- uses: actions/checkout@v3
64+
- uses: actions/checkout@v4
6565
with:
6666
fetch-depth: 0
6767
persist-credentials: false

.pre-commit-config.yaml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,14 @@ repos:
2121
rev: 1.7.1
2222
hooks:
2323
- id: poetry-check
24-
- repo: https://github.com/PyCQA/isort
25-
rev: 5.12.0
26-
hooks:
27-
- id: isort
28-
- repo: https://github.com/psf/black-pre-commit-mirror
29-
rev: 23.11.0
30-
hooks:
31-
- id: black
32-
language_version: python3
3324
- repo: https://github.com/codespell-project/codespell
3425
rev: v2.2.6
3526
hooks:
3627
- id: codespell
3728
- repo: https://github.com/charliermarsh/ruff-pre-commit
38-
rev: v0.1.7
29+
rev: v0.1.8
3930
hooks:
31+
- id: ruff-format
4032
- id: ruff
4133
args:
4234
- --fix

poetry.lock

Lines changed: 287 additions & 788 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ pytest = "*"
4242
pre-commit = "^3.5.0"
4343
mypy = "*"
4444
ruff = "*"
45-
isort = "*"
46-
black = "*"
4745
codespell = "*"
4846
pyshark = "^0.6"
4947

@@ -55,11 +53,4 @@ build_command = "pip install poetry && poetry build"
5553
[tool.ruff]
5654
ignore = ["F403", "E741"]
5755
line-length = 120
58-
select=["E", "F", "UP"]
59-
60-
[tool.black]
61-
line-length = 120
62-
63-
[tool.isort]
64-
profile = "black"
65-
line_length = 120
56+
select=["E", "F", "UP", "I"]

0 commit comments

Comments
 (0)