Skip to content

Commit a048b0c

Browse files
committed
fix lint
1 parent dcbd2ea commit a048b0c

4 files changed

Lines changed: 5 additions & 10 deletions

File tree

packages/bigframes/scripts/bigquery_generator/__main__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
# limitations under the License.
1414

1515

16-
from . import constants
17-
from . import file_generator
18-
from . import yaml_parser
16+
from . import constants, file_generator, yaml_parser
1917

2018

2119
def main():

packages/bigframes/scripts/bigquery_generator/file_generator.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
import subprocess
1717
import sys
1818

19-
from . import constants
20-
from . import data_models
21-
from . import template_renderer
19+
from . import constants, data_models, template_renderer
2220

2321

2422
def _ensure_init_py(directory: pathlib.Path, limit_dir: pathlib.Path):

packages/bigframes/scripts/bigquery_generator/template_renderer.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515

1616

1717

18-
from . import constants
19-
from . import data_models
18+
from . import constants, data_models
2019

2120

2221
def _get_concrete_type_expr(yaml_type: str) -> str:

packages/bigframes/scripts/bigquery_generator/yaml_parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
import re
1818
from typing import Any
1919

20-
from . import constants
21-
from . import data_models
2220
import yaml
2321

22+
from . import constants, data_models
23+
2424

2525
def _to_snake_case(name: str) -> str:
2626
# Replace dots with underscores

0 commit comments

Comments
 (0)