We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 119a1b0 commit 8e6d543Copy full SHA for 8e6d543
2 files changed
tests/system/v2_client/_helpers.py
@@ -40,7 +40,5 @@ def _retry_on_unavailable(exc):
40
41
def label_stamp():
42
return (
43
- datetime.now(timezone.utc)
44
- .replace(microsecond=0)
45
- .strftime("%Y-%m-%dt%H-%M-%S")
+ datetime.now(timezone.utc).replace(microsecond=0).strftime("%Y-%m-%dt%H-%M-%S")
46
)
tests/system/v2_client/test_data_api.py
@@ -12,7 +12,7 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
-import datetime, timezone
+from datetime import datetime, timezone
16
import operator
17
18
import pytest
0 commit comments