DEV: Remove unnecessary notary calls.

This commit is contained in:
Scott Sanderson 2015-01-01 20:49:35 -05:00
parent 631a68d83e
commit 23837e9ad4

View File

@ -498,7 +498,6 @@ class ContentsManager(LoggingConfigurable):
"""Create a checkpoint."""
nb = nbformat.from_dict(self.get(path, content=True)['content'])
self.check_and_sign(nb, path)
return self.checkpoint_manager.create_checkpoint(nb, path)
def list_checkpoints(self, path):
@ -513,8 +512,6 @@ class ContentsManager(LoggingConfigurable):
path,
)
self.mark_trusted_cells(nb, path)
model = {
'content': nb,
'type': 'notebook',