From b2e2dc11276f93d07cfb64c3dfa18883c3e8c294 Mon Sep 17 00:00:00 2001
From: dcarron <daniel.carron@idiap.ch>
Date: Tue, 25 Jul 2023 15:18:30 +0200
Subject: [PATCH] Changed typing of DatabaseSplit from dict to abc.Mapping

---
 src/ptbench/data/typing.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/ptbench/data/typing.py b/src/ptbench/data/typing.py
index 344c1294..e8dc56a0 100644
--- a/src/ptbench/data/typing.py
+++ b/src/ptbench/data/typing.py
@@ -4,6 +4,7 @@
 
 """Defines most common types used in code."""
 
+import collections.abc
 import typing
 
 import torch
@@ -47,12 +48,11 @@ Typically used in data-processing pipelines inside pytorch.
 TransformSequence = typing.Sequence[Transform]
 """A sequence of transforms."""
 
-DatabaseSplit = dict[str, typing.Sequence[typing.Any]]
-"""The definition of a database script.
+DatabaseSplit = collections.abc.Mapping[str, typing.Sequence[typing.Any]]
+"""The definition of a database split.
 
-A database script maps subset names to sequences of objects that,
-through RawDataLoader's eventually become Samples in the processing
-pipeline.
+A database split maps subset names to sequences of objects that, through
+RawDataLoader's eventually become Samples in the processing pipeline.
 """
 
 
-- 
GitLab