mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-15 02:54:07 +00:00
eslint: strict equality
Enforce use of ===/!== and fix existing issues.
This commit is contained in:
committed by
David Lechner
parent
1d9dd82191
commit
e01fb1fbe9
@@ -177,7 +177,7 @@ function* handleExplorerImportFiles(): Generator {
|
||||
|
||||
const result = validateFileName(baseName, pythonFileExtension, []);
|
||||
|
||||
if (result != FileNameValidationResult.IsOk) {
|
||||
if (result !== FileNameValidationResult.IsOk) {
|
||||
yield* put(renameImportDialogShow(file.name));
|
||||
|
||||
const { accepted, cancelled } = yield* race({
|
||||
|
||||
Reference in New Issue
Block a user