Merge pull request #19 from Deixx/fix-imports

Add timedelta to imports
This commit is contained in:
Robert Baldyga 2024-10-03 12:40:18 +02:00 committed by GitHub
commit acedafb5af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -8,10 +8,10 @@
import base64
import math
import textwrap
from collections import namedtuple
from datetime import datetime, timedelta
from aenum import IntFlag, Enum
from collections import namedtuple
from datetime import datetime
from core.test_run import TestRun
from test_tools.dd import Dd

View File

@ -1,9 +1,10 @@
#
# Copyright(c) 2019-2021 Intel Corporation
# Copyright(c) 2023-2024 Huawei Technologies Co., Ltd.
# SPDX-License-Identifier: BSD-3-Clause
#
from datetime import timedelta
from core.test_run import TestRun
from test_tools import fs_utils
from test_tools.dd import Dd
from test_utils.filesystem.fs_item import FsItem