pyvikunja 0.12__tar.gz → 0.13__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pyvikunja
3
- Version: 0.12
3
+ Version: 0.13
4
4
  Summary: A Python wrapper for Vikunja API
5
5
  Author: Joseph Shufflebotham
6
6
  License: AGPL
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pyvikunja"
7
- version = "0.12"
7
+ version = "0.13"
8
8
  description = "A Python wrapper for Vikunja API"
9
9
  authors = [
10
10
  {name = "Joseph Shufflebotham"}
@@ -166,7 +166,8 @@ class Task(BaseModel):
166
166
 
167
167
  async def set_repeating_enabled(self, enabled: bool):
168
168
  return await self.update({
169
- 'repeat_after': None if not enabled else 3600 # 1 hour min
169
+ 'repeat_after': None if not enabled else 3600, # 1 hour min
170
+ 'repeat_mode': 0
170
171
  })
171
172
 
172
173
  async def set_repeating_interval(self, interval: Optional[timedelta] = None,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pyvikunja
3
- Version: 0.12
3
+ Version: 0.13
4
4
  Summary: A Python wrapper for Vikunja API
5
5
  Author: Joseph Shufflebotham
6
6
  License: AGPL
File without changes
File without changes
File without changes
File without changes
File without changes