Skip to content

Commit

Permalink
run sipify
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Mar 25, 2019
1 parent 0e35c91 commit f453142
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions python/core/auto_additions/qgsmaplayer.py
@@ -1,9 +1,13 @@
# The following has been generated automatically from src/core/qgsmaplayer.h
# monkey patching scoped based enum
.QgsMapLayerType.VectorLayer.__doc__ = ""
.QgsMapLayerType.RasterLayer.__doc__ = ""
.QgsMapLayerType.PluginLayer.__doc__ = ""
.QgsMapLayerType.MeshLayer.__doc__ = "Added in 3.2"
QgsMapLayer.VectorLayer.__doc__ = ""
QgsMapLayer.VectorLayer = QgsMapLayerType.VectorLayer
QgsMapLayer.RasterLayer.__doc__ = ""
QgsMapLayer.RasterLayer = QgsMapLayerType.RasterLayer
QgsMapLayer.PluginLayer.__doc__ = ""
QgsMapLayer.PluginLayer = QgsMapLayerType.PluginLayer
QgsMapLayer.MeshLayer.__doc__ = "Added in 3.2"
QgsMapLayer.MeshLayer = QgsMapLayerType.MeshLayer
.QgsMapLayerType.__doc__ = 'Types of layers that can be added to a map\n\n' + '* VectorLayer: ' + .QgsMapLayerType.VectorLayer.__doc__ + '\n' + '* RasterLayer: ' + .QgsMapLayerType.RasterLayer.__doc__ + '\n' + '* PluginLayer: ' + .QgsMapLayerType.PluginLayer.__doc__ + '\n' + '* MeshLayer: ' + .QgsMapLayerType.MeshLayer.__doc__
# --
QgsMapLayer.LayerFlag.baseClass = QgsMapLayer
Expand Down

0 comments on commit f453142

Please sign in to comment.