Skip to content

Commit 9989827

Browse files
committed
ruff
1 parent 4340085 commit 9989827

1 file changed

Lines changed: 68 additions & 10 deletions

File tree

packages/bigframes/scripts/generate_bigframes_bigquery.py

Lines changed: 68 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -119,16 +119,74 @@
119119
}
120120

121121
_PYTHON_BUILTINS = {
122-
"abs", "all", "any", "ascii", "bin", "bool", "breakpoint", "bytearray",
123-
"bytes", "callable", "chr", "classmethod", "compile", "complex",
124-
"delattr", "dict", "dir", "divmod", "enumerate", "eval", "exec",
125-
"filter", "float", "format", "frozenset", "getattr", "globals",
126-
"hasattr", "hash", "help", "hex", "id", "input", "int", "isinstance",
127-
"issubclass", "iter", "len", "list", "locals", "map", "max", "memoryview",
128-
"min", "next", "object", "oct", "open", "ord", "pow", "print", "property",
129-
"range", "repr", "reversed", "round", "set", "setattr", "slice",
130-
"sorted", "staticmethod", "str", "sum", "super", "tuple", "type",
131-
"vars", "zip"
122+
"abs",
123+
"all",
124+
"any",
125+
"ascii",
126+
"bin",
127+
"bool",
128+
"breakpoint",
129+
"bytearray",
130+
"bytes",
131+
"callable",
132+
"chr",
133+
"classmethod",
134+
"compile",
135+
"complex",
136+
"delattr",
137+
"dict",
138+
"dir",
139+
"divmod",
140+
"enumerate",
141+
"eval",
142+
"exec",
143+
"filter",
144+
"float",
145+
"format",
146+
"frozenset",
147+
"getattr",
148+
"globals",
149+
"hasattr",
150+
"hash",
151+
"help",
152+
"hex",
153+
"id",
154+
"input",
155+
"int",
156+
"isinstance",
157+
"issubclass",
158+
"iter",
159+
"len",
160+
"list",
161+
"locals",
162+
"map",
163+
"max",
164+
"memoryview",
165+
"min",
166+
"next",
167+
"object",
168+
"oct",
169+
"open",
170+
"ord",
171+
"pow",
172+
"print",
173+
"property",
174+
"range",
175+
"repr",
176+
"reversed",
177+
"round",
178+
"set",
179+
"setattr",
180+
"slice",
181+
"sorted",
182+
"staticmethod",
183+
"str",
184+
"sum",
185+
"super",
186+
"tuple",
187+
"type",
188+
"vars",
189+
"zip",
132190
}
133191

134192

0 commit comments

Comments
 (0)