Skip to content

Commit 9b9d8f0

Browse files
hivanalejandroiennae
authored andcommitted
fix lintintg
1 parent 558a588 commit 9b9d8f0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

datacatalog/cloud-client/createFilesetEntry.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const main = async (
3030
// -------------------------------
3131
// Import required modules.
3232
// -------------------------------
33-
const { DataCatalogClient } = require('@google-cloud/datacatalog').v1;
33+
const {DataCatalogClient} = require('@google-cloud/datacatalog').v1;
3434
const datacatalog = new DataCatalogClient();
3535

3636
// Currently, Data Catalog stores metadata in the
@@ -49,7 +49,7 @@ const main = async (
4949
const entry = {
5050
displayName: 'My Fileset',
5151
description: 'This fileset consists of ....',
52-
gcsFilesetSpec: { filePatterns: ['gs://my_bucket/*'] },
52+
gcsFilesetSpec: {filePatterns: ['gs://my_bucket/*']},
5353
schema: {
5454
columns: [
5555
{

datacatalog/quickstart/createFilesetEntry.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const main = async (
3030
// -------------------------------
3131
// Import required modules.
3232
// -------------------------------
33-
const { DataCatalogClient } = require('@google-cloud/datacatalog').v1;
33+
const {DataCatalogClient} = require('@google-cloud/datacatalog').v1;
3434
const datacatalog = new DataCatalogClient();
3535

3636
// -------------------------------
@@ -72,7 +72,7 @@ const main = async (
7272
const entry = {
7373
displayName: 'My Fileset',
7474
description: 'This fileset consists of ...',
75-
gcsFilesetSpec: { filePatterns: ['gs://my_bucket/*'] },
75+
gcsFilesetSpec: {filePatterns: ['gs://my_bucket/*']},
7676
schema: {
7777
columns: [
7878
{

0 commit comments

Comments
 (0)