Skip to content

Commit

Permalink
remove stray print function and add more supported Python versions (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
gillins committed May 15, 2024
1 parent 17c5d3b commit 1fc3317
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ def getGDALFlags():
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'])
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'])


1 change: 0 additions & 1 deletion tuiview/querywindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ def scrollToNextSelected(self):
# - 2 because of header and scroll bar (?)
nShownRows = self.view.indexAt(brPoint).row() - 2
startSearch = self.scroll.sliderPosition() + nShownRows
print('startsearch', startSearch)
if startSearch < self.attributes.getNumRows():
nextIdx = self.parent.selectionArray[startSearch:].argmax()
# add on the index we started search at
Expand Down

0 comments on commit 1fc3317

Please sign in to comment.