Skip to content

Commit bdd9205

Browse files
committed
Fix linting
1 parent 8b06a93 commit bdd9205

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/common/configSettings.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ export class PythonSettings implements IPythonSettings {
320320
unittestEnabled: false,
321321
pytestPath: 'pytest',
322322
autoTestDiscoverOnSaveEnabled: true,
323-
autoTestDiscoverOnSavePattern: "**.py"
323+
autoTestDiscoverOnSavePattern: '**.py',
324324
} as ITestingSettings;
325325
}
326326
}
@@ -337,7 +337,7 @@ export class PythonSettings implements IPythonSettings {
337337
unittestArgs: [],
338338
unittestEnabled: false,
339339
autoTestDiscoverOnSaveEnabled: true,
340-
autoTestDiscoverOnSavePattern: "**.py",
340+
autoTestDiscoverOnSavePattern: '**.py',
341341
};
342342
this.testing.pytestPath = getAbsolutePath(systemVariables.resolveAny(this.testing.pytestPath), workspaceRoot);
343343
if (this.testing.cwd) {

0 commit comments

Comments
 (0)