From 7eaaf21c47ed9047d63849a25b7ce65c85965c2a Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Thu, 19 Dec 2024 15:14:49 -0800 Subject: [PATCH] Delete src/hdmf/build/map.py --- src/hdmf/build/map.py | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 src/hdmf/build/map.py diff --git a/src/hdmf/build/map.py b/src/hdmf/build/map.py deleted file mode 100644 index 5267609f5..000000000 --- a/src/hdmf/build/map.py +++ /dev/null @@ -1,7 +0,0 @@ -# this prevents breaking of code that imports these classes directly from map.py -from .manager import Proxy, BuildManager, TypeSource, TypeMap # noqa: F401 -from .objectmapper import ObjectMapper # noqa: F401 - -import warnings -warnings.warn('Classes in map.py should be imported from hdmf.build. Importing from hdmf.build.map will be removed ' - 'in HDMF 3.0.', DeprecationWarning, stacklevel=2)