Skip to content

Commit 8fb969e

Browse files
style: fix import sorting and formatting issues
1 parent 66c4689 commit 8fb969e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

monai/transforms/signal/radial_fourier.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@
1515
from __future__ import annotations
1616

1717
import math
18-
from typing import Optional, Union
19-
2018
from collections.abc import Sequence
19+
from typing import Optional, Union
2120

2221
import numpy as np
2322
import torch

tests/test_radial_fourier.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
Tests for the 3D Radial Fourier Transform.
1313
"""
1414

15+
from __future__ import annotations
16+
1517
import unittest
1618

1719
import numpy as np
@@ -33,8 +35,6 @@ def setUp(self):
3335
# Create test data
3436
self.test_image_3d = torch.randn(1, 32, 64, 64, device=self.device) # Batch, D, H, W
3537

36-
37-
def tearDown(self):
3838
"""Clean up after tests."""
3939
set_determinism(seed=None)
4040

0 commit comments

Comments
 (0)