Skip to content

Commit

Permalink
chore: some lint fixes [(#3748)](GoogleCloudPlatform/python-docs-samp…
Browse files Browse the repository at this point in the history
  • Loading branch information
Takashi Matsuo authored May 13, 2020
1 parent f8274ab commit 8adb97a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
5 changes: 3 additions & 2 deletions samples/snippets/quickstart/pub_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@
# limitations under the License.

import os
import pytest
import uuid

from google.api_core.exceptions import AlreadyExists
from google.cloud import pubsub_v1
import pytest

import pub # noqa

import pub

UUID = uuid.uuid4().hex
PROJECT = os.environ["GCLOUD_PROJECT"]
Expand Down
7 changes: 3 additions & 4 deletions samples/snippets/quickstart/sub_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,15 @@
# 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 mock
import os
import pytest
import uuid

from google.api_core.exceptions import AlreadyExists
from google.cloud import pubsub_v1
import mock
import pytest

import sub
import sub # noqa


UUID = uuid.uuid4().hex
Expand Down

0 comments on commit 8adb97a

Please sign in to comment.