summary refs log tree commit diff
path: root/synapse/replication/slave/storage/profile.py
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/replication/slave/storage/profile.py')
-rw-r--r--synapse/replication/slave/storage/profile.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/replication/slave/storage/profile.py b/synapse/replication/slave/storage/profile.py
index 99f4a22642..a774a2ff48 100644
--- a/synapse/replication/slave/storage/profile.py
+++ b/synapse/replication/slave/storage/profile.py
@@ -12,9 +12,8 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-from synapse.replication.slave.storage._base import BaseSlavedStore
 from synapse.storage.databases.main.profile import ProfileWorkerStore
 
 
-class SlavedProfileStore(ProfileWorkerStore, BaseSlavedStore):
+class SlavedProfileStore(ProfileWorkerStore):
     pass