Skip to content

Commit

Permalink
remove unused "UI" branch from main function
Browse files Browse the repository at this point in the history
  • Loading branch information
ctheune committed Feb 4, 2024
1 parent 2eb7cde commit fdf7ab8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/aramaki/server/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ def main():
parser.add_argument("subsystem")

args = parser.parse_args()
if args.subsystem == "ui":
from .web.main import main as real_main
elif args.subsystem == "processing":
if args.subsystem == "processing":
from .processing.main import main as real_main
elif args.subsystem == "federation":
from .federation.main import main as real_main
Expand Down

0 comments on commit fdf7ab8

Please sign in to comment.