Skip to content

Commit 772e799

Browse files
committed
clean up
1 parent c3e6023 commit 772e799

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/client/formatters/baseFormatter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export abstract class BaseFormatter {
5757
"For further details, please see https://github.com/DonJayamanne/pythonVSCode/wiki/Troubleshooting-Linting#2-linting-with-xxx-failed-";
5858
}
5959
else {
60-
customError += `\nYou could either install the '${this.Id}' formatter, turn it off or use another formatter.\n`;
60+
customError += `\nYou could either install the '${this.Id}' formatter, turn it off or use another formatter.`;
6161
}
6262
}
6363

src/client/linters/baseLinter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export abstract class BaseLinter {
129129
"For further details, please see https://github.com/DonJayamanne/pythonVSCode/wiki/Troubleshooting-Linting#2-linting-with-xxx-failed-";
130130
}
131131
else {
132-
customError += `\nYou could either install the '${this.Id}' linter or turn it off in setings.json via "python.linting.${this.Id}Enabled = false".\n`;
132+
customError += `\nYou could either install the '${this.Id}' linter or turn it off in setings.json via "python.linting.${this.Id}Enabled = false".`;
133133
}
134134
}
135135

0 commit comments

Comments
 (0)