From 9de6b0407d03ea46f761cf1c4df968ebfdfe7875 Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Mon, 20 Jan 2020 17:39:42 +0100 Subject: [PATCH] feat(ftrack): reversing changes on action_test --- pype/ftrack/actions/action_test.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pype/ftrack/actions/action_test.py b/pype/ftrack/actions/action_test.py index a1e633bf1b..502373e626 100644 --- a/pype/ftrack/actions/action_test.py +++ b/pype/ftrack/actions/action_test.py @@ -9,11 +9,12 @@ import re import ftrack_api from pype.ftrack import BaseAction from avalon import io, inventory, schema -from pypeapp import Anatomy + class TestAction(BaseAction): '''Edit meta data action.''' + ignore_me = True #: Action identifier. identifier = 'test.action' #: Action label. @@ -34,11 +35,8 @@ class TestAction(BaseAction): return True def launch(self, session, entities, event): - anatomy = Anatomy() - data = { - "version": None - } - print(anatomy.format(data)) + self.log.info(event) + return True