Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagepy
linenumberstrue
# license: https://openwsn.atlassian.net/wiki/display/OW/License
'''
Introductory text to this module
'''


#============================ import ==========================================


import os


#============================ body ============================================


class MyClass(object):
    '''
    ProvidesDescription an application model for OpenVisualizer. Provides common,
    top-level functionality for several UI clientsof class.
    '''
    
    def myFunctionamyMethod(self,myParam):
        '''
        Description of functionmethod.
        
        :param myParam: Description of myParam
        
        :rtype:         Description of returned value
        '''
        
        return None