From 95cbde5894ae7261bcd101fb7a5aaaf958acdc04 Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Thu, 8 Jun 2023 17:46:47 -0700 Subject: [PATCH] chore: fix wrapping of comment, mostly to trigger coverage --- packages/shorebird_cli/lib/src/command.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/shorebird_cli/lib/src/command.dart b/packages/shorebird_cli/lib/src/command.dart index 18e5d4f6..9cfe8db5 100644 --- a/packages/shorebird_cli/lib/src/command.dart +++ b/packages/shorebird_cli/lib/src/command.dart @@ -117,7 +117,8 @@ abstract class ShorebirdCommand extends Command { } Uri? get hostedUri { - // TODO(bryanoltman): maybe look for an environment variable instead of reading shorebird.yaml? + // TODO(bryanoltman): maybe look for an environment variable instead of + // reading shorebird.yaml? try { final baseUrl = getShorebirdYaml()?.baseUrl; return baseUrl == null ? null : Uri.tryParse(baseUrl);