Skip to content

Commit cd34a7e

Browse files
authored
Merge pull request #151 from justmobilize/connection-manager
Use ConnectionManager
2 parents 2afa03d + 81657b1 commit cd34a7e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+951
-1179
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,10 @@ _build
4646
.idea
4747
.vscode
4848
*~
49+
50+
# tox-specific files
51+
.tox
52+
build
53+
54+
# coverage-specific files
55+
.coverage

.pre-commit-config.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,14 @@
44

55
repos:
66
- repo: https://github.com/python/black
7-
rev: 23.3.0
7+
rev: 24.2.0
88
hooks:
99
- id: black
10+
- repo: https://github.com/PyCQA/isort
11+
rev: 5.13.2
12+
hooks:
13+
- id: isort
14+
args: ["--profile", "black", "--filter-files"]
1015
- repo: https://github.com/fsfe/reuse-tool
1116
rev: v1.1.2
1217
hooks:
@@ -32,11 +37,11 @@ repos:
3237
types: [python]
3338
files: "^examples/"
3439
args:
35-
- --disable=missing-docstring,invalid-name,consider-using-f-string,duplicate-code
40+
- --disable=consider-using-f-string,duplicate-code,missing-docstring,invalid-name
3641
- id: pylint
3742
name: pylint (test code)
3843
description: Run pylint rules on "tests/*.py" files
3944
types: [python]
4045
files: "^tests/"
4146
args:
42-
- --disable=missing-docstring,consider-using-f-string,duplicate-code
47+
- --disable=consider-using-f-string,duplicate-code,missing-docstring,invalid-name,protected-access,redefined-outer-name

0 commit comments

Comments
 (0)