File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,6 @@ function localizeObjectsGCS(uri) {
56
56
// [START vision_localize_objects_uri]
57
57
// Imports the Google Cloud client libraries
58
58
const vision = require ( '@google-cloud/vision' ) . v1p3beta1 ;
59
- const fs = require ( `fs` ) ;
60
59
61
60
// Creates a client
62
61
const client = new vision . ImageAnnotatorClient ( ) ;
@@ -87,6 +86,7 @@ function detectHandwritingOCR(fileName) {
87
86
// [START vision_handwritten_ocr]
88
87
// Imports the Google Cloud client libraries
89
88
const vision = require ( '@google-cloud/vision' ) . v1p3beta1 ;
89
+ const fs = require ( 'fs' ) ;
90
90
91
91
// Creates a client
92
92
const client = new vision . ImageAnnotatorClient ( ) ;
@@ -120,6 +120,7 @@ function detectHandwritingGCS(uri) {
120
120
// [START vision_handwritten_ocr_uri]
121
121
// Imports the Google Cloud client libraries
122
122
const vision = require ( '@google-cloud/vision' ) . v1p3beta1 ;
123
+ const fs = require ( 'fs' ) ;
123
124
124
125
// Creates a client
125
126
const client = new vision . ImageAnnotatorClient ( ) ;
You can’t perform that action at this time.
0 commit comments