Skip to content

Commit

Permalink
Merge pull request #140 from gee-community/fix_attributetable_args
Browse files Browse the repository at this point in the history
Fix a warning/error of a position argument in read and write native a…
  • Loading branch information
gena authored Mar 25, 2024
2 parents 9fdb2ce + f9e0604 commit 35a74fc
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 35a74fc

Please sign in to comment.