Skip to content
Snippets Groups Projects

Stub list functionality

Merged willm3 requested to merge wmalisch/list-exercies into main
1 file
+ 7
1
Compare changes
  • Side-by-side
  • Inline
+ 7
1
@@ -12,7 +12,6 @@ class Activity:
self.db_client.connect()
def record(self):
try:
print("Activity started.")
self.running = True
@@ -76,3 +75,10 @@ class Activity:
print(e, "An error was encountered when recording your activity. Please try again.")
return False
def get_latest_activity(self):
# TODO
return
def list_activities(self):
# TODO
return
\ No newline at end of file
Loading