Skip to content

Commit

Permalink
Fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
micxer committed May 24, 2023
1 parent 3b0501b commit 5069579
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fritzbox_lua/lua_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ type LabelRename struct {

// regex to remove leading/training characters from numbers
var (
regexNonNumberEnd = regexp.MustCompile("\\D+$")
regexNonNumberEnd = regexp.MustCompile(`\\D+$`)
)

func (lua *LuaSession) doLogin(response string) error {
Expand Down

0 comments on commit 5069579

Please sign in to comment.