Skip to content

Commit e4822eb

Browse files
jeremymanningclaude
andcommitted
Fix code formatting to pass CI/CD quality gates
- Apply black formatting to test files - Fix import sorting with isort - Ensure consistent code style across codebase This resolves CI/CD pipeline failures in quality gate checks. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent b2c3dff commit e4822eb

File tree

5 files changed

+2
-7
lines changed

5 files changed

+2
-7
lines changed

htfa/results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
and NIfTI reconstruction capabilities.
66
"""
77

8-
from typing import Any, Dict, List, Optional, TYPE_CHECKING
8+
from typing import TYPE_CHECKING, Any, Dict, List, Optional
99

1010
import warnings
1111

tests/conftest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
import os
66
import sys
77
import tempfile
8-
from pathlib import Path
9-
108
import time
9+
from pathlib import Path
1110

1211
import numpy as np
1312
import pytest

tests/e2e/test_full_pipeline.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""End-to-end tests for complete HTFA workflows."""
22

3-
43
import numpy as np
54
import pytest
65

tests/integration/test_fit_interface.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
without mocks to ensure the entire pipeline works correctly.
66
"""
77

8-
9-
108
import numpy as np
119
import pytest
1210

tests/unit/test_validation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Comprehensive tests for HTFA validation framework."""
22

3-
43
import json
54
import tempfile
65
from pathlib import Path

0 commit comments

Comments
 (0)