Skip to content

Commit

Permalink
Merge pull request #181 from hytechimaging/v1.3.0
Browse files Browse the repository at this point in the history
uncommit fixes
  • Loading branch information
SebastienPeillet authored Nov 29, 2022
2 parents 7f7c56f + b6cd5b3 commit d69a461
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION := "1.2.3"
VERSION := "1.3.0"
TMPDIR := "/tmp/sammo-boat-$(VERSION)"

venv:
Expand Down
2 changes: 1 addition & 1 deletion metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name=Sammo-Boat
description=Tool for megafauna observations from halieutic boats
about=Tool for megafauna observations
version=1.2.3
version=1.3.0
qgisMinimumVersion=3.16
author=Paul Blottière
[email protected]
Expand Down
3 changes: 2 additions & 1 deletion sammo.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import os.path
import platform
from datetime import datetime
from typing import Optional

from qgis.PyQt.QtGui import QKeySequence
from qgis.PyQt.QtWidgets import QToolBar, QShortcut, QTableView, QAction
Expand Down Expand Up @@ -501,7 +502,7 @@ def onSightingsAction(self):
self.tableDock.refresh(layer, self.filterExpr)
self.soundRecordingController.onStopEventWhichNeedSoundRecord(60)

def onFollowersAction(self, validation: QAction):
def onFollowersAction(self, validation: Optional[QAction]=None):
if validation == self.followersAction.followerTable:
table = SammoAttributeTable.attributeTable(
self.iface, self.session.followersLayer, self.filterExpr
Expand Down

0 comments on commit d69a461

Please sign in to comment.