Skip to content

Commit 96a6f16

Browse files
glaukiol1sbinet
andcommitted
Update os/os.module.go
Co-authored-by: Sebastien Binet <[email protected]>
1 parent 760f6ce commit 96a6f16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

os/os.module.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func init() {
4646

4747
// gets and parses all process enviroment variables
4848
func getEnvVariables() py.StringDict {
49-
env_variables := os.Environ() // this gets all the enviroment variables
49+
vs := os.Environ()
5050
dict := py.NewStringDict()
5151
for _, evar := range env_variables {
5252
key_value := strings.SplitN(evar, "=", 2) // returns a []string containing [key,value]

0 commit comments

Comments
 (0)