~anton-skriptsov/charms/trusty/cinder-nexentaedge/trunk

« back to all changes in this revision

Viewing changes to charms/trusty/cinder-nedge/hooks/configurationSteps/baseConfigurationStep.py

  • Committer: anton.skriptsov at nexenta
  • Date: 2015-11-12 18:47:44 UTC
  • Revision ID: anton.skriptsov@nexenta.com-20151112184744-8nrnbppt6m3jpewl
remove

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
class BaseConfigurationStep:
2
 
  def __init__(self):
3
 
    self.a = 'a'
4
 
 
5
 
  def process(self, environment):
6
 
    raise Exception('Not implemented. Abstract class usage')
7