Remove functionality related to auto HTML export (#1088)

This commit is contained in:
Ryan Holmes
2017-04-02 11:46:17 -05:00
committed by GitHub
parent f9ec79c8eb
commit 92722d491f
3 changed files with 4 additions and 30 deletions

View File

@@ -263,7 +263,6 @@ class HTMLExportSettings(object):
def __init__(self):
serviceHTMLExportDefaultSettings = {
"enabled": False,
"path" : config.pyfaPath + os.sep + 'pyfaFits.html',
"minimal": False
}
@@ -272,12 +271,6 @@ class HTMLExportSettings(object):
serviceHTMLExportDefaultSettings
)
def getEnabled(self):
return self.serviceHTMLExportSettings["enabled"]
def setEnabled(self, enabled):
self.serviceHTMLExportSettings["enabled"] = enabled
def getMinimalEnabled(self):
return self.serviceHTMLExportSettings["minimal"]