core[fix]: remove load from dynamic imports dict (#30849)

This commit is contained in:
Sydney Runkle 2025-04-15 12:02:46 -04:00 committed by GitHub
parent 7240458619
commit 1f5e207379
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,6 @@ __all__ = ["dumpd", "dumps", "load", "loads", "Serializable"]
_dynamic_imports = {
"dumpd": "dump",
"dumps": "dump",
"load": "load",
"loads": "load",
"Serializable": "serializable",
}