Small fix to disable all extensions

This commit is contained in:
Tiago vasconcelos
2021-07-05 10:02:36 +01:00
parent b7332bea64
commit 3f6393a943
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -29,6 +29,9 @@ class ExtensionManager:
def extensions(self) -> List[Extension]:
output = []
if "all" in self._disabled:
return output
for extension in [
ext for ext in self._extension_folders if ext not in self._disabled
]: