From b033b337a286aea161ab0a0696fc5e3ab93efc12 Mon Sep 17 00:00:00 2001 From: Kyle McCormick Date: Wed, 29 Oct 2025 15:49:29 -0400 Subject: [PATCH] docs: Fix types in OldModuleStoreRuntime comments Just a small find+replace mistake from 834cb9482d4612dc24ada1bdd53c5f8bdc7eb8fb --- xmodule/modulestore/mongo/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xmodule/modulestore/mongo/base.py b/xmodule/modulestore/mongo/base.py index 3ab0fd780e..66a9938825 100644 --- a/xmodule/modulestore/mongo/base.py +++ b/xmodule/modulestore/mongo/base.py @@ -922,7 +922,7 @@ class MongoModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase, Mongo descendents of the queried blocks for more efficient results later in the request. The depth is counted in the number of calls to get_children() to cache. None indicates to cache all descendents. - using_descriptor_system (SplitModuleStoreRuntime): The existing SplitModuleStoreRuntime + using_descriptor_system (ModuleStoreRuntime): The existing ModuleStoreRuntime to add data to, and to load the XBlocks from. """ item = self._find_one(usage_key) @@ -994,7 +994,7 @@ class MongoModuleStore(ModuleStoreDraftAndPublished, ModuleStoreWriteBase, Mongo For this modulestore, ``name`` is a commonly provided key (Location based stores) This modulestore does not allow searching dates by comparison or edited_by, previous_version, update_version info. - using_descriptor_system (SplitModuleStoreRuntime): The existing SplitModuleStoreRuntime + using_descriptor_system (ModuleStoreRuntime): The existing ModuleStoreRuntime to add data to, and to load the XBlocks from. """ qualifiers = qualifiers.copy() if qualifiers else {} # copy the qualifiers (destructively manipulated here)