Skip to content

Commit

Permalink
Fix a warning/error of a position argument in read and write native a…
Browse files Browse the repository at this point in the history
…ttribute table
  • Loading branch information
XavierCLL committed Mar 25, 2024
1 parent 66dbbf4 commit f9e0604
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,11 +303,11 @@ def setZoomedOutResamplingMethod(self, method):
def setMaxOversampling(self, factor):
return self.wms.setMaxOversampling(factor)

def writeNativeAttributeTable(self, errorMessage):
return self.wms.writeNativeAttributeTable(errorMessage)
def writeNativeAttributeTable(self):
return self.wms.writeNativeAttributeTable()

def readNativeAttributeTable(self, errorMessage):
return self.wms.readNativeAttributeTable(errorMessage)
def readNativeAttributeTable(self):
return self.wms.readNativeAttributeTable()

# readBlock()

Expand Down

0 comments on commit f9e0604

Please sign in to comment.