Skip to content

Commit

Permalink
Formatting and remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandgeider committed Dec 5, 2024
1 parent 91d932e commit 47ba1ee
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 123 deletions.
9 changes: 2 additions & 7 deletions wger/__main__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-

# This file is part of wger Workout Manager.
#
# wger Workout Manager is free software: you can redistribute it and/or modify
Expand All @@ -14,11 +12,8 @@
#
# You should have received a copy of the GNU Affero General Public License

# Standard Library
import os
import sys

# Third Party
# wger
from wger.tasks import make_program


Expand All @@ -33,5 +28,5 @@ def main():
make_program().run()


if __name__ == "__main__":
if __name__ == '__main__':
main()
Loading

0 comments on commit 47ba1ee

Please sign in to comment.