From 617106adefbb9cd00fe2ea2ce7f12c1314d16630 Mon Sep 17 00:00:00 2001 From: Alexander Clegg Date: Fri, 29 Jan 2021 07:34:25 -0800 Subject: [PATCH] Add python module for MetadataMediator to be picked up by docs build. (#1062) --- habitat_sim/__init__.py | 2 ++ habitat_sim/metadata.py | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 habitat_sim/metadata.py diff --git a/habitat_sim/__init__.py b/habitat_sim/__init__.py index f2726b20bf..46ed008c76 100644 --- a/habitat_sim/__init__.py +++ b/habitat_sim/__init__.py @@ -17,6 +17,7 @@ geo, gfx, logging, + metadata, nav, physics, scene, @@ -73,6 +74,7 @@ "agent", "attributes", "attributes_managers", + "metadata", "nav", "sensors", "errors", diff --git a/habitat_sim/metadata.py b/habitat_sim/metadata.py new file mode 100644 index 0000000000..63b4085a2d --- /dev/null +++ b/habitat_sim/metadata.py @@ -0,0 +1,9 @@ +# Copyright (c) Facebook, Inc. and its affiliates. +# This source code is licensed under the MIT license found in the +# LICENSE file in the root directory of this source tree. + +from habitat_sim._ext.habitat_sim_bindings import MetadataMediator + +__all__ = [ + "MetadataMediator", +]