jrobinAV 1 سال پیش
والد
کامیت
08d4a53f96
2فایلهای تغییر یافته به همراه3 افزوده شده و 4 حذف شده
  1. 1 2
      tests/core/_orchestrator/test_orchestrator.py
  2. 2 2
      tests/core/utils/__init__.py

+ 1 - 2
tests/core/_orchestrator/test_orchestrator.py

@@ -27,8 +27,7 @@ from taipy.core.scenario.scenario import Scenario
 from taipy.core.submission._submission_manager import _SubmissionManager
 from taipy.core.submission.submission_status import SubmissionStatus
 from taipy.core.task.task import Task
-from tests.core.utils import assert_true_after_time, assert_submission_status
-
+from tests.core.utils import assert_submission_status, assert_true_after_time
 
 # ################################  USER FUNCTIONS  ##################################
 

+ 2 - 2
tests/core/utils/__init__.py

@@ -8,11 +8,11 @@
 # Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 # an "AS IS" BASIS, 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.
-from taipy import Submission
-
 from datetime import datetime
 from time import sleep
 
+from taipy import Submission
+
 
 def assert_true_after_time(assertion, time=120, msg=None, **msg_params):
     loops = 0