18 lines
355 B
Python
18 lines
355 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
# \file Filter.py
|
|
# \brief TODO
|
|
# \author Florent Guiotte <florent.guiotte@gmail.com>
|
|
# \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')
|