From 4ae6eb7429f7f2880edc7aae73c1c1a6b7f10188 Mon Sep 17 00:00:00 2001 From: Roy Nieterau Date: Mon, 26 Jun 2017 17:43:38 +0200 Subject: [PATCH] Remove HistoryLoader since it's not implemented anyway --- colorbleed/plugins/maya/load/load_animation.py | 11 ----------- 1 file changed, 11 deletions(-) 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.")