コード例 #1
0
ファイル: VersionedPlugin12.py プロジェクト: zendbit/peppy
    def __init__(self):
        """
		init
		"""
        # initialise parent class
        IPlugin.__init__(self)
        print("Version 1.2")
コード例 #2
0
ファイル: VersionedPlugin12.py プロジェクト: betsegaw/peppy
	def __init__(self):
		"""
		init
		"""
		# initialise parent class
		IPlugin.__init__(self)
		print("Version 1.2")
コード例 #3
0
ファイル: CrazyPlugin.py プロジェクト: zendbit/peppy
    def __init__(self):
        """
		init
		"""
        # initialise parent class
        IPlugin.__init__(self)
        print("Version 1.0")
        self.util = CrazyUtil(self)
コード例 #4
0
ファイル: CrazyPlugin.py プロジェクト: betsegaw/peppy
	def __init__(self):
		"""
		init
		"""
		# initialise parent class
		IPlugin.__init__(self)
		print("Version 1.0")
		self.util = CrazyUtil(self)