Skip to content

Commit e9f3c76

Browse files
reyortiz3claude
andcommitted
fix(env): drop unused receiver variable in LookupEnv
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 45aa87e commit e9f3c76

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

env/env.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ func (*OSReader) Getenv(key string) string {
2222
}
2323

2424
// LookupEnv returns the value of the environment variable named by the key
25-
func (r *OSReader) LookupEnv(key string) (string, bool) {
25+
func (*OSReader) LookupEnv(key string) (string, bool) {
2626
return os.LookupEnv(key)
2727
}

0 commit comments

Comments
 (0)