diff options
| author | tassaron | 2017-06-08 22:56:33 -0400 |
|---|---|---|
| committer | tassaron | 2017-06-08 22:56:33 -0400 |
| commit | d3f979ef2461a3de701df0d5add545b80dfe23ad (patch) | |
| tree | 2765c9108cd7bbf990045a0c6ad8cd5bec4dbfda /core.py | |
| parent | c51d86dd74c0548a0e81725534b78e23f6b6acaa (diff) | |
start connecting import/export buttons
Diffstat (limited to 'core.py')
| -rw-r--r-- | core.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -85,6 +85,12 @@ class Core(): with open(filepath, 'w') as f: f.write(Core.stringOrderedDict(saveValueStore)) + def importPreset(self, filepath): + print(filepath) + + def exportPreset(self, exportName, compName, vers, origName): + pass + def loadEncoderOptions(self): file_path = os.path.join(self.wd, 'encoder-options.json') with open(file_path) as json_file: |
