diff --git a/colorbleed/plugins/maya/load/load_animation.py b/colorbleed/plugins/maya/load/load_animation.py index cbb1e6bff5..6660468484 100644 --- a/colorbleed/plugins/maya/load/load_animation.py +++ b/colorbleed/plugins/maya/load/load_animation.py @@ -1,4 +1,3 @@ -import pprint from avalon import api @@ -138,13 +137,3 @@ class CurvesLoader(api.Loader): family=family, options={"useSelection": True}, data={"dependencies": " ".join(str(d) for d in dependencies)}) - - -class HistoryLoader(api.Loader): - """Specific loader of Curves for the avalon.animation family""" - - families = ["colorbleed.animation"] - representations = ["history"] - - def process(self, name, namespace, context): - raise NotImplementedError("Can't load history yet.")