Skip to content

Commit

Permalink
Default __init__ impl of Concern.
Browse files Browse the repository at this point in the history
  • Loading branch information
eldipa committed Mar 1, 2019
1 parent b159f1e commit de26777
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions byexample/concern.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ class Concern(ExtendOptionParserMixin):
interface.
'''

def __init__(self, **kargs):
'''
Called once when the concern is loaded.
'''
pass

def __repr__(self):
return '%s Concern' % tohuman(self.target)

Expand Down

0 comments on commit de26777

Please sign in to comment.