From 581f6cd53f57599326439dccb355e882e7858faa Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 14 Jul 2019 12:50:04 +0300 Subject: Add: MemoryPersitentState --- ick2/apibase.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ick2/apibase.py') diff --git a/ick2/apibase.py b/ick2/apibase.py index c08f7cf..f330eae 100644 --- a/ick2/apibase.py +++ b/ick2/apibase.py @@ -1,4 +1,4 @@ -# Copyright (C) 2017-2018 Lars Wirzenius +# Copyright (C) 2017-2019 Lars Wirzenius # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or @@ -19,7 +19,7 @@ import ick2 class APIbase: def __init__(self, state): - assert state is None or isinstance(state, ick2.FilePersistentState) + assert state is None or isinstance(state, ick2.MemoryPersistentState) self._trans = ick2.TransactionalState(state) def get_routes(self, path): -- cgit v1.2.1