mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-29 15:32:23 +03:00
10 lines
282 B
Python
10 lines
282 B
Python
|
#!/usr/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
||
|
|
||
|
class IPlugin(object):
|
||
|
"""docstring for IPlugin"""
|
||
|
def __init__(self, arg):
|
||
|
super(IPlugin, self).__init__()
|
||
|
self.arg = arg
|