Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
vkostyanetsky committed Aug 14, 2023
1 parent 482f717 commit 3bdead2
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 0 deletions.
6 changes: 6 additions & 0 deletions fastimer/commands/command_cancel.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#!/usr/bin/env python3

"""
Implementation of a command to cancel an ongoing fast.
"""

def cancel_fast() -> None:
"""
Cancels the active fast.
Expand Down
6 changes: 6 additions & 0 deletions fastimer/commands/command_show.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#!/usr/bin/env python3

"""
Implementation of a command to output a fast.
"""

import datetime
import typing

Expand Down
7 changes: 7 additions & 0 deletions fastimer/commands/command_start.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#!/usr/bin/env python3

"""
Implementation of a command to start a new fast.
"""


def main(path: str) -> None:
"""
Starts a new fast.
Expand Down
7 changes: 7 additions & 0 deletions fastimer/commands/command_stat.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#!/usr/bin/env python3

"""
Implementation of a command to output fasting statistics.
"""


def main(path: str) -> None:
pass

Expand Down
7 changes: 7 additions & 0 deletions fastimer/commands/command_stop.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#!/usr/bin/env python3

"""
Implementation of a command to stop an ongoing fast.
"""


def main(path: str) -> None:
"""
Finishes the active fast.
Expand Down

0 comments on commit 3bdead2

Please sign in to comment.