Skip to content
Snippets Groups Projects
Select Git revision
  • 7c6462c10b41b63c825b4cdd063eb9224a49b468
  • master default protected
2 results

__init__.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    __init__.py 190 B
    #the __init__ gives the construction order for the plugin
    
    from .netCDF_visualization import netCDF_viewer
    
    def classFactory(iface):
        plugin = netCDF_viewer(iface)
        return plugin