mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-02 13:56:39 +00:00
15 lines
287 B
Python
15 lines
287 B
Python
|
#!/usr/bin/env python3
|
||
|
#
|
||
|
# Operator.py
|
||
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
||
|
#
|
||
|
|
||
|
class Operator(object):
|
||
|
def apply(self, region):
|
||
|
pass
|
||
|
|
||
|
def __init__(self, *args):
|
||
|
pass
|
||
|
|
||
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|