summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-02-23 10:31:16 +0000
committerErik Johnston <erik@matrix.org>2018-02-23 10:31:16 +0000
commitbb73f55fc6559658080d6cdd5672506fda7843ab (patch)
tree8977968a4222659e234935f7ade6f0ebc86b1d54 /synapse/storage
parentSplit AccountDataStore and TagStore (diff)
downloadsynapse-bb73f55fc6559658080d6cdd5672506fda7843ab.tar.xz
Use absolute imports
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/account_data.py4
-rw-r--r--synapse/storage/tags.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/synapse/storage/account_data.py b/synapse/storage/account_data.py
index 66fed4bdcf..0d6acbd9a1 100644
--- a/synapse/storage/account_data.py
+++ b/synapse/storage/account_data.py
@@ -15,8 +15,8 @@
 
 from twisted.internet import defer
 
-from ._base import SQLBaseStore
-from .util.id_generators import StreamIdGenerator
+from synapse.storage._base import SQLBaseStore
+from synapse.storage.util.id_generators import StreamIdGenerator
 
 from synapse.util.caches.stream_change_cache import StreamChangeCache
 from synapse.util.caches.descriptors import cached, cachedList, cachedInlineCallbacks
diff --git a/synapse/storage/tags.py b/synapse/storage/tags.py
index 484d66991a..a8d0bf80c4 100644
--- a/synapse/storage/tags.py
+++ b/synapse/storage/tags.py
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-from .account_data import AccountDataWorkerStore
+from synapse.storage.account_data import AccountDataWorkerStore
 
 from synapse.util.caches.descriptors import cached
 from twisted.internet import defer