Skip to content

Commit 34296ee

Browse files
committed
fix import groupings
1 parent 41c9d64 commit 34296ee

File tree

9 files changed

+21
-6
lines changed

9 files changed

+21
-6
lines changed

language/automl/dataset_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@
1515
# limitations under the License.
1616

1717
import os
18-
import automl_natural_language_dataset
1918
import datetime
19+
2020
import pytest
2121

22+
import automl_natural_language_dataset
23+
2224
project_id = os.environ["GCLOUD_PROJECT"]
2325
compute_region = "us-central1"
2426

language/automl/model_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@
1515
# limitations under the License.
1616

1717
import os
18-
import automl_natural_language_model
1918
import datetime
19+
2020
from google.cloud import automl_v1beta1 as automl
2121

22+
import automl_natural_language_model
23+
2224
project_id = os.environ["GCLOUD_PROJECT"]
2325
compute_region = "us-central1"
2426

language/automl/predict_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
# limitations under the License.
1616

1717
import os
18+
1819
import automl_natural_language_predict
1920

2021
project_id = os.environ["GCLOUD_PROJECT"]

translate/automl/dataset_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@
1515
# limitations under the License.
1616

1717
import os
18-
import automl_translation_dataset
1918
import datetime
19+
2020
import pytest
2121

22+
import automl_translation_dataset
23+
2224
project_id = os.environ["GCLOUD_PROJECT"]
2325
compute_region = "us-central1"
2426

translate/automl/model_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@
1515
# limitations under the License.
1616

1717
import os
18-
import automl_translation_model
1918
import datetime
19+
2020
from google.cloud import automl_v1beta1 as automl
2121

22+
import automl_translation_model
23+
2224
project_id = os.environ["GCLOUD_PROJECT"]
2325
compute_region = "us-central1"
2426

translate/automl/predict_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
# limitations under the License.
1616

1717
import os
18+
1819
import automl_translation_predict
1920

2021
project_id = os.environ["GCLOUD_PROJECT"]

vision/automl/dataset_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@
1515
# limitations under the License.
1616

1717
import os
18-
import automl_vision_dataset
1918
import datetime
19+
2020
import pytest
2121

22+
import automl_vision_dataset
23+
2224
project_id = os.environ["GCLOUD_PROJECT"]
2325
compute_region = "us-central1"
2426

vision/automl/model_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@
1515
# limitations under the License.
1616

1717
import os
18-
import automl_vision_model
1918
import datetime
19+
2020
from google.cloud import automl_v1beta1 as automl
2121

22+
import automl_vision_model
23+
2224
project_id = os.environ["GCLOUD_PROJECT"]
2325
compute_region = "us-central1"
2426

vision/automl/predict_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
# limitations under the License.
1616

1717
import os
18+
1819
import automl_vision_predict
1920

2021
project_id = os.environ["GCLOUD_PROJECT"]

0 commit comments

Comments
 (0)