Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Commit

Permalink
Fix additional imports, add google-cloud-logging
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyjbauer committed Aug 14, 2018
1 parent 2e98c02 commit 1fca882
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
'configparser>=3.5.0',
'mock>=2.0.0',
'future>=0.16.0',
'google-cloud-logging>=1.6.0',
'google-cloud-monitoring>=0.30.1',
'google-api-python-client>=1.6.2',
'seaborn>=0.7.0',
Expand Down
6 changes: 3 additions & 3 deletions tests/stackdriver/monitoring/query_metadata_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
import mock
import unittest

from google.cloud.monitoring import Resource
from google.cloud.monitoring import Metric
from google.cloud.monitoring import TimeSeries
from google.cloud.logging.resource import Resource
from google.cloud.monitoring_v3.types import Metric
from google.cloud.monitoring_v3.types import TimeSeries

import google.auth
import google.datalab
Expand Down
2 changes: 1 addition & 1 deletion tests/stackdriver/monitoring/query_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import mock
import unittest

from google.cloud.monitoring import Query as BaseQuery
from google.cloud.monitoring_v3.query import Query as BaseQuery

import google.auth
import google.datalab
Expand Down

0 comments on commit 1fca882

Please sign in to comment.