Skip to content

Commit 148c4f0

Browse files
replace package name from graph_objects to grob
1 parent 558623b commit 148c4f0

16 files changed

+16
-16
lines changed

graph_objects/auto_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graph_objects
1+
package grob
22

33
type Config struct {
44

graph_objects/auto_enumerates.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graph_objects
1+
package grob
22

33
// Enumerate section
44

graph_objects/auto_flaglists.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graph_objects
1+
package grob
22

33
type AreaHoverinfo string
44

graph_objects/auto_layout.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graph_objects
1+
package grob
22

33
type Layout struct {
44

graph_objects/auto_objects.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graph_objects
1+
package grob
22

33
// DEEP 0
44
type AreaHoverlabel struct {

graph_objects/auto_plotly.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
package graph_objects
1+
package grob
22

33
// Plotly Schema SHA ccc513331344efa777630dc699af5ecc8a8c208a

graph_objects/auto_traces.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graph_objects
1+
package grob
22

33
import (
44
"encoding/json"

graph_objects/config.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{{- $objects := dict }}
55
{{- $flaglists := dict }}
66
{{- $layoutAttributes := dict -}}
7-
package graph_objects
7+
package grob
88

99

1010
type Config struct {

graph_objects/enumerates.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{{- end -}}
99

1010
{{- define "enumerates" -}}
11-
package graph_objects
11+
package grob
1212

1313
// Enumerate section
1414

graph_objects/flaglists.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- define "flaglists" -}}
2-
package graph_objects
2+
package grob
33

44
{{ range $name,$attr := .flaglists }}
55
{{- $containsBool := or (has true $attr.flags) (has false $attr.flags) (has false $attr.extras) (has false $attr.extras) }}

graph_objects/layout.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{{- $enumerates := dict }}
44
{{- $objects := dict }}
55
{{- $flaglists := dict }}
6-
package graph_objects
6+
package grob
77

88

99
type Layout struct {

graph_objects/objects.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ type {{ $typeName }} struct {
3939
{{- $objects := dict }}
4040
{{- $flaglists := dict }}
4141
{{- if eq .deep 0 -}}
42-
package graph_objects
42+
package grob
4343
{{- end }}
4444
// DEEP {{ .deep -}}
4545

graph_objects/plotly.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graph_objects
1+
package grob
22

33
import (
44
"encoding/json"

graph_objects/plotly.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- define "plotly" -}}
2-
package graph_objects
2+
package grob
33

44
// Plotly Schema SHA {{ .sha1 }}
55

graph_objects/plotly_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package graph_objects
1+
package grob
22

33
import (
44
"bytes"

graph_objects/traces.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{- define "traces" -}}
22
{{- $g := . -}}
3-
package graph_objects
3+
package grob
44

55
import (
66
"encoding/json"

0 commit comments

Comments
 (0)