Skip to content

Commit

Permalink
Auto commit version 1.1.20 - 31 Jan 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
kulikjak committed Jan 31, 2024
1 parent f87e1f6 commit c4bb38c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='skautis-py',
version='1.1.19',
version='1.1.20',
description='Python library for interaction with the Skautis API',
author='Jakub Kulik',
author_email='[email protected]',
Expand Down
4 changes: 2 additions & 2 deletions skautis/Summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def ExportUnitView(self, ID_Login, ID, Units=None):
return self._client.service.ExportUnitView({"ID_Login": ID_Login, "ID": ID, "Units": Units})

# Načíst seznam šablon exportu jednotek
def ExportUnitAll(self, ID_Login, ID, ID_Person, DisplayName=None):
return self._client.service.ExportUnitAll({"ID_Login": ID_Login, "ID": ID, "ID_Person": ID_Person, "DisplayName": DisplayName})
def ExportUnitAll(self, ID_Login, ID, DisplayName=None):
return self._client.service.ExportUnitAll({"ID_Login": ID_Login, "ID": ID, "DisplayName": DisplayName})

# Smazat šablonu exportu jednotek
def ExportUnitDelete(self, ID_Login, ID):
Expand Down

0 comments on commit c4bb38c

Please sign in to comment.