We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42f875f commit 5854213Copy full SHA for 5854213
timetagger/app/stores.py
@@ -1042,6 +1042,15 @@ def reset(self):
1042
self._create_tags()
1043
self._create_one_year_of_data(self._years.pop(-1))
1044
1045
+ # Add many small records, for testing
1046
+ # ds = "hello #there"
1047
+ # t = dt.now()
1048
+ # for i in range(20):
1049
+ # t2 = t + 220
1050
+ # record = self.records.create(t, t2, ds)
1051
+ # t = t2
1052
+ # self.records._put_received(record)
1053
+
1054
async def _sync(self):
1055
"""Emulate a sync action."""
1056
for kind in ["settings", "records"]:
0 commit comments