Skip to content

Commit

Permalink
Fix msgpack based marvin results (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
akshit-deepsource authored Jan 27, 2023
1 parent bd39749 commit 85d128a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/scatr/process_marvin_result.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ type MarvinLocation struct {
Begin struct {
Line int `json:"line" msgpack:"line"`
Column int `json:"column" msgpack:"column"`
} `json:"begin"`
} `json:"begin" msgpack:"begin"`
End struct {
Line int `json:"line" msgpack:"line"`
Column int `json:"column" msgpack:"column"`
Expand Down
2 changes: 1 addition & 1 deletion cmd/scatr/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/spf13/cobra"
)

const version = "0.3.1"
const version = "0.3.2"

var versionCmd = &cobra.Command{
Use: "version",
Expand Down

0 comments on commit 85d128a

Please sign in to comment.