chore: fix wrapping of comment, mostly to trigger coverage

This commit is contained in:
Eric Seidel
2023-06-08 17:46:47 -07:00
parent 4c7ba555e5
commit 95cbde5894
+2 -1
View File
@@ -117,7 +117,8 @@ abstract class ShorebirdCommand extends Command<int> {
}
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);