Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Commit

Permalink
make lint happy
Browse files Browse the repository at this point in the history
Signed-off-by: Achille Roussel <[email protected]>
  • Loading branch information
achille-roussel committed Jun 1, 2023
1 parent 2e87f8d commit 405fe7b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ func config(ctx context.Context, args []string) error {
flagSet := newFlagSet("timecraft config", configUsage)
boolVar(flagSet, &edit, "edit")
customVar(flagSet, &output, "o", "output")
parseFlags(flagSet, args)

if _, err := parseFlags(flagSet, args); err != nil {
return err
}

r, path, err := openConfig()
if err != nil {
Expand Down

0 comments on commit 405fe7b

Please sign in to comment.