diff --git a/satella/__init__.py b/satella/__init__.py
index b6aa12adad8935af65267424faf90a601f52a29b..413aa79fbe109186c4d56e917eef0d139b0d5a54 100644
--- a/satella/__init__.py
+++ b/satella/__init__.py
@@ -1 +1 @@
-__version__ = '2.16.2a5'
+__version__ = '2.16.2a6'
diff --git a/satella/configuration/sources/from_dict.py b/satella/configuration/sources/from_dict.py
index ade9997e8bbff595c8f09db8b5fc021cb0243ada..ee563941746bb56e6597f6bbf5b87b63e3b54873 100644
--- a/satella/configuration/sources/from_dict.py
+++ b/satella/configuration/sources/from_dict.py
@@ -52,10 +52,6 @@ def load_source_from_dict(dct: dict) -> BaseSource:
     def to_arg(arg):
         if isinstance(arg, dict) and 'type' in arg:
             a_type = arg['type']
-            if a_type == 'BuildObjectFrom':
-                key_name = arg['key']
-                child = load_source_from_dict(arg['child'])
-                return BuildObjectFrom(key_name, child)
             if a_type in EXTRA_TYPES:
                 return EXTRA_TYPES[a_type](arg)
             elif a_type in sources.__dict__: