#!/usr/bin/python # -*- coding: utf-8 -*- # \file Filter.py # \brief TODO # \author Florent Guiotte # \version 0.1 # \date 03 avril 2018 # # TODO details from Input import Input from Output import Output class Filter(Output, Input): """Output should be first""" def __init__(self): super().__init__('Filter')