summaryrefslogtreecommitdiff
path: root/bookpipeline/cmd/confgraph/main.go
diff options
context:
space:
mode:
authorNick White <git@njw.name>2019-09-05 22:13:23 +0100
committerNick White <git@njw.name>2019-09-05 22:13:23 +0100
commit7c897a13ad90bdcaffccf74d43cc4fd20f150226 (patch)
treee0974acd6a176d3297600c2e50907313ce5d6995 /bookpipeline/cmd/confgraph/main.go
parent70c1c0f0148ea173331f4f6d40274e3b95e3ce41 (diff)
gofmt
Diffstat (limited to 'bookpipeline/cmd/confgraph/main.go')
-rw-r--r--bookpipeline/cmd/confgraph/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bookpipeline/cmd/confgraph/main.go b/bookpipeline/cmd/confgraph/main.go
index 20a5838..b60821e 100644
--- a/bookpipeline/cmd/confgraph/main.go
+++ b/bookpipeline/cmd/confgraph/main.go
@@ -17,7 +17,7 @@ func walker(confs *[]*bookpipeline.Conf) filepath.WalkFunc {
if info.IsDir() {
return nil
}
- if ! strings.HasSuffix(path, ".hocr") {
+ if !strings.HasSuffix(path, ".hocr") {
return nil
}
avg, err := hocr.GetAvgConf(path)