From 5e25641bce2e52595eae160802d02ebd3e6de911 Mon Sep 17 00:00:00 2001 From: Gregory Lee Date: Tue, 31 Oct 2023 14:10:17 -0700 Subject: [PATCH] fix import order in test case (#624) Fixes one issue reported by the linter on `branch-23.12` Authors: - Gregory Lee (https://github.com/grlee77) Approvers: - Gigon Bae (https://github.com/gigony) - https://github.com/jakirkham URL: https://github.com/rapidsai/cucim/pull/624 --- .../tests/performance/clara/test_read_region_memory_usage.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/cucim/tests/performance/clara/test_read_region_memory_usage.py b/python/cucim/tests/performance/clara/test_read_region_memory_usage.py index 99e8c376a..a0137444c 100644 --- a/python/cucim/tests/performance/clara/test_read_region_memory_usage.py +++ b/python/cucim/tests/performance/clara/test_read_region_memory_usage.py @@ -102,9 +102,10 @@ def test_tiff_iterator(testimg_tiff_stripe_4096x4096_256): See issue gh-598: https://github.com/rapidsai/cucim/issues/598 """ - import numpy as np - import random import os + import random + + import numpy as np import psutil slide_path = testimg_tiff_stripe_4096x4096_256