Skip to content

Commit

Permalink
remove redundant runController call
Browse files Browse the repository at this point in the history
  • Loading branch information
lenkan committed Dec 11, 2024
1 parent 6f2f0be commit 4d68393
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/keria/app/cli/keria.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,9 @@
"""
import multicommand
from keri import help

from keri.app import directing
from keria.app.cli import commands

logger = help.ogler.getLogger()


def main():
parser = multicommand.create_parser(commands)
args = parser.parse_args()
Expand All @@ -22,8 +17,7 @@ def main():
return

try:
doers = args.handler(args)
directing.runController(doers=doers, expire=0.0)
args.handler(args)

except Exception as ex:
# print(f"ERR: {ex}")
Expand Down

0 comments on commit 4d68393

Please sign in to comment.