Skip to content

Commit e6eecbc

Browse files
committed
Updates some formatting of a comment to accomodate black
1 parent 907b77c commit e6eecbc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

google/cloud/bigquery/enums.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,9 @@ def _generate_next_value_(name, start, count, last_values):
272272
ARRAY = enum.auto()
273273
STRUCT = enum.auto()
274274
RANGE = enum.auto()
275-
FOREIGN = enum.auto() # NOTE: FOREIGN acts as a wrapper for data types
275+
# NOTE: FOREIGN acts as a wrapper for data types
276276
# not natively understood by BigQuery unless translated
277+
FOREIGN = enum.auto()
277278

278279

279280
class EntityTypes(str, enum.Enum):
@@ -316,8 +317,9 @@ class SqlTypeNames(str, enum.Enum):
316317
DATETIME = "DATETIME"
317318
INTERVAL = "INTERVAL" # NOTE: not available in legacy types
318319
RANGE = "RANGE" # NOTE: not available in legacy types
319-
FOREIGN = "FOREIGN" # NOTE: FOREIGN acts as a wrapper for data types
320+
# NOTE: FOREIGN acts as a wrapper for data types
320321
# not natively understood by BigQuery unless translated
322+
FOREIGN = "FOREIGN"
321323

322324

323325
class WriteDisposition(object):

0 commit comments

Comments
 (0)