Skip to content

Commit

Permalink
chore: dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
gkc committed Oct 9, 2024
1 parent 0c16ffd commit ba133dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/at_onboarding_cli/lib/src/cli/auth_cli.dart
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ String parseServerResponse(String? response) {
if (response != null && response.startsWith('data:')) {
return response.replaceFirst('data:', '');
} else {
throw('Unexpected server response: $response');
throw ('Unexpected server response: $response');
}
}

Expand Down
7 changes: 4 additions & 3 deletions packages/at_onboarding_cli/lib/src/cli/auth_cli_args.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ enum AuthCliCommand {
list(usage: 'List enrollment requests'),
fetch(usage: 'Fetch a specific enrollment request'),
approve(usage: 'Approve a pending enrollment request'),
auto(usage: 'Listen for new enrollment requests which match the parameters'
' supplied, and auto-approve them. Will exit after N (defaults to 1)'
' enrollment requests have been approved.'),
auto(
usage: 'Listen for new enrollment requests which match the parameters'
' supplied, and auto-approve them. Will exit after N (defaults to 1)'
' enrollment requests have been approved.'),
deny(usage: 'Deny a pending enrollment request'),
revoke(usage: 'Revoke approval of a previously-approved enrollment'),
unrevoke(usage: 'Restores access to the previously revoked enrollment'),
Expand Down

0 comments on commit ba133dd

Please sign in to comment.