Skip to content

Commit 2b29b82

Browse files
committed
fix(main): fixed default apt/pip mirror; removed deprecated pylint option
1 parent 95ba499 commit 2b29b82

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"dockerfile": "Dockerfile",
55
"context": "..",
66
"args": {
7-
"APT_MIRROR_DOMAIN": "${localEnv:APT_MIRROR_DOMAIN:-deb.debian.org}",
8-
"PIP_MIRROR_DOMAIN": "${localEnv:PIP_MIRROR_DOMAIN:-pypi.org}"
7+
"APT_MIRROR_DOMAIN": "${localEnv:APT_MIRROR_DOMAIN:deb.debian.org}",
8+
"PIP_MIRROR_DOMAIN": "${localEnv:PIP_MIRROR_DOMAIN:pypi.org}"
99
}
1010
},
1111
"postCreateCommand": "scripts/setup.sh",

pylintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ recursive=true
2222

2323
# When enabled, pylint would attempt to guess common misconfiguration and emit
2424
# user-friendly hints instead of false-positive error messages.
25-
suggestion-mode=yes
25+
# deprecated in pylint v4.0.0
26+
# suggestion-mode=yes
2627

2728
# Allow loading of arbitrary C extensions. Extensions are imported into the
2829
# active Python interpreter and may run arbitrary code.

0 commit comments

Comments
 (0)