Skip to content

Commit

Permalink
Auto commit version 1.1.32 - 12 Jan 2025
Browse files Browse the repository at this point in the history
  • Loading branch information
kulikjak committed Jan 12, 2025
1 parent 9c9a9ad commit 3fe231f
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.31',
version='1.1.32',
description='Python library for interaction with the Skautis API',
author='Jakub Kulik',
author_email='kulikjak@gmail.com',
Expand Down
4 changes: 2 additions & 2 deletions skautis/OrganizationUnit.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,8 +647,8 @@ def UnitAllTelephony(self, ID_Login, ID_Application, ID, ID_Group, RegistrationN
return self._client.service.UnitAllTelephony({"ID_Login": ID_Login, "ID_Application": ID_Application, "ID": ID, "ID_Group": ID_Group, "RegistrationNumberStartWith": RegistrationNumberStartWith, "ID_UnitType": ID_UnitType, "RegistrationNumber": RegistrationNumber, "DisplayName": DisplayName, "Location": Location, "AccountNumber": AccountNumber, "IC": IC})

# Načíst seznam jednotek pro menu
def UnitAllMenu(self, ID_Login, ID_Application, ID, ID_UnitParent, ID_UnitChild):
return self._client.service.UnitAllMenu({"ID_Login": ID_Login, "ID_Application": ID_Application, "ID": ID, "ID_UnitParent": ID_UnitParent, "ID_UnitChild": ID_UnitChild})
def UnitAllMenu(self, ID_Login, ID_UnitParent, ID_Application, ID, ID_UnitChild):
return self._client.service.UnitAllMenu({"ID_Login": ID_Login, "ID_UnitParent": ID_UnitParent, "ID_Application": ID_Application, "ID": ID, "ID_UnitChild": ID_UnitChild})

# Načíst seznam evidencí provedených kontrol
def UnitAuditRegisterAllUnit(self, ID_Login, ID_Unit):
Expand Down

0 comments on commit 3fe231f

Please sign in to comment.