Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 8e6d543

Browse files
committed
fixed import
1 parent 119a1b0 commit 8e6d543

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

tests/system/v2_client/_helpers.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,5 @@ def _retry_on_unavailable(exc):
4040

4141
def label_stamp():
4242
return (
43-
datetime.now(timezone.utc)
44-
.replace(microsecond=0)
45-
.strftime("%Y-%m-%dt%H-%M-%S")
43+
datetime.now(timezone.utc).replace(microsecond=0).strftime("%Y-%m-%dt%H-%M-%S")
4644
)

tests/system/v2_client/test_data_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import datetime, timezone
15+
from datetime import datetime, timezone
1616
import operator
1717

1818
import pytest

0 commit comments

Comments
 (0)