We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2986967 + 2b55584 commit 54aeb5dCopy full SHA for 54aeb5d
trellis/trellis.go
@@ -96,7 +96,7 @@ func (t *Trellis) LoadProject() error {
96
func (t *Trellis) EnvironmentNames() []string {
97
var names []string
98
99
- for key, _ := range t.Environments {
+ for key := range t.Environments {
100
names = append(names, key)
101
}
102
@@ -110,7 +110,7 @@ func (t *Trellis) SiteNamesFromEnvironment(environment string) []string {
110
111
config := t.Environments[environment]
112
113
- for name, _ := range config.WordPressSites {
+ for name := range config.WordPressSites {
114
names = append(names, name)
115
116
0 commit comments