mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-21 18:23:35 +00:00
11 lines
232 B
Python
11 lines
232 B
Python
from nbconvert.exporters import Exporter
|
|
|
|
|
|
class DummyExporter(Exporter):
|
|
pass
|
|
|
|
|
|
class DummyScriptExporter(Exporter):
|
|
def from_notebook_node(self, nb, resources=None, **kw):
|
|
return "dummy-script-exported", resources
|