コード例 #1
0
ファイル: views.py プロジェクト: andantic/adhocracy3
 def _get_post_metric_name(self, iresource: IInterface) -> str:
     name = 'process.post'
     if iresource.isOrExtends(IProposalVersion):
         name = 'process.post.proposalversion'
     elif iresource.isOrExtends(IRateVersion):
         name = 'process.post.rateversion'
     return name
コード例 #2
0
 def _get_post_metric_name(self, iresource: IInterface) -> str:
     name = 'process.post'
     if iresource.isOrExtends(IProposalVersion):
         name = 'process.post.proposalversion'
     elif iresource.isOrExtends(IRateVersion):
         name = 'process.post.rateversion'
     return name
コード例 #3
0
ファイル: __init__.py プロジェクト: libscott/adhocracy3
 def __init__(self, interface: IInterface, config):
     assert interface.isOrExtends(Interface)
     self.interface = interface
コード例 #4
0
ファイル: __init__.py プロジェクト: libscott/adhocracy3
 def __init__(self, isheet: IInterface, config):
     assert isheet.isOrExtends(ISheet)
     self.isheet = isheet
コード例 #5
0
ファイル: __init__.py プロジェクト: andantic/adhocracy3
 def __init__(self, interface: IInterface, config):
     assert interface.isOrExtends(Interface)
     self.interface = interface
コード例 #6
0
ファイル: __init__.py プロジェクト: andantic/adhocracy3
 def __init__(self, isheet: IInterface, config):
     assert isheet.isOrExtends(ISheet)
     self.isheet = isheet