Skip to content

Commit bff09d5

Browse files
Amendments to extensions
1 parent 9732e72 commit bff09d5

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.vscode/extensions.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@
1515
"johnpapa.vscode-peacock",
1616
"mhutchie.git-graph",
1717
"ms-azuretools.vscode-docker",
18+
"ms-python.black-formatter",
1819
"ms-python.python",
1920
"ms-vscode-remote.remote-containers",
2021
"ms-vscode-remote.remote-wsl",
2122
"ms-vscode.hexeditor",
2223
"ms-vscode.live-server",
2324
"ms-vsliveshare.vsliveshare",
2425
"redhat.vscode-xml",
26+
"sonarsource.sonarlint-vscode",
2527
"streetsidesoftware.code-spell-checker-british-english",
2628
"tamasfe.even-better-toml",
2729
"tomoki1207.pdf",

utils/axe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77

88
logger = logging.getLogger(__name__)
9-
109
PATH_FOR_REPORT = Path(os.getcwd()) / "axe-reports"
1110

1211

utils/user_tools.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import json
2+
import os
23
import logging
34
from pathlib import Path
45

56

67
logger = logging.getLogger(__name__)
7-
USERS_FILE = Path(__file__).parent.parent / "users.json"
8+
USERS_FILE = Path(os.getcwd()) / "users.json"
89

910

1011
class UserTools:

0 commit comments

Comments
 (0)