Skip to content

Commit

Permalink
chore: some lint fixes [(#3750)](GoogleCloudPlatform/python-docs-samp…
Browse files Browse the repository at this point in the history
  • Loading branch information
Takashi Matsuo authored and busunkim96 committed Aug 13, 2020
1 parent b119f72 commit 184930a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions samples/tables/dataset_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import pytest
import os
import random
import string
import os
import time

from google.api_core import exceptions
import pytest

import automl_tables_dataset


PROJECT = os.environ["GCLOUD_PROJECT"]
REGION = "us-central1"
STATIC_DATASET = "do_not_delete_this_table"
Expand Down
4 changes: 2 additions & 2 deletions samples/tables/model_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import os
import random
import string
import os
import time

from google.api_core import exceptions

import automl_tables_model
import dataset_test


PROJECT = os.environ["GCLOUD_PROJECT"]
REGION = "us-central1"
STATIC_MODEL = "do_not_delete_this_model_0"
Expand Down
3 changes: 2 additions & 1 deletion samples/tables/predict_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@

from google.cloud.automl_v1beta1.gapic import enums

import automl_tables_predict
import automl_tables_model
import automl_tables_predict
import model_test


PROJECT = os.environ["GCLOUD_PROJECT"]
REGION = "us-central1"
STATIC_MODEL = model_test.STATIC_MODEL
Expand Down

0 comments on commit 184930a

Please sign in to comment.