From: W. Trevor King Date: Thu, 8 Sep 2011 21:51:19 +0000 (-0400) Subject: Merging is still unimplemented, so raise an exception on Storage.clear(). X-Git-Tag: v0.2~23 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9f9d9e87b5bb65d6d6a72807401b66183e151d66;p=h5config.git Merging is still unimplemented, so raise an exception on Storage.clear(). --- diff --git a/h5config/storage/__init__.py b/h5config/storage/__init__.py index 428e98e..a62c473 100644 --- a/h5config/storage/__init__.py +++ b/h5config/storage/__init__.py @@ -36,6 +36,9 @@ class Storage (object): def _save(self, config, **kwargs): raise NotImplementedError() + def clear(self): + raise NotImplementedError() + class FileStorage (Storage): "`Config` storage backend by a single file"