* Considerable clean-up of existing code.

* Moved the PSA import to the properties panel.
This commit is contained in:
Colin Basnett
2022-01-22 21:44:36 -08:00
parent abef2a7f45
commit 41edd61f3d
5 changed files with 88 additions and 81 deletions

View File

@@ -181,4 +181,9 @@ class PskImportOperator(Operator, ImportHelper):
psk = reader.read(self.filepath)
name = os.path.splitext(os.path.basename(self.filepath))[0]
PskImporter().import_psk(psk, name, context)
return {'FINISHED'}
return {'FINISHED'}
__classes__ = [
PskImportOperator
]