Skip to content

Commit

Permalink
stop in-lining state
Browse files Browse the repository at this point in the history
  • Loading branch information
hubertdeng123 committed Nov 1, 2024
1 parent 37c8e71 commit 2b84152
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion devservices/commands/list_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ def list_services(args: Namespace) -> None:
# Get all of the services installed locally
coderoot = get_coderoot()
services = get_local_services(coderoot)
running_services = State().get_started_services()
state = State()
running_services = state.get_started_services()

if not services:
print("No services found")
Expand Down

0 comments on commit 2b84152

Please sign in to comment.