Skip to content

Commit 3dde357

Browse files
committed
ci: fix ruff lint errors — CCC autonomous
1 parent 8ae7395 commit 3dde357

4 files changed

Lines changed: 2 additions & 5 deletions

File tree

‎holonomy_harmony/flow.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from enum import Enum, auto
1818
from typing import Dict, List, Optional, Tuple
1919

20-
from .tonal_graph import TonalGraph, PITCH_CLASSES, TransitionDirection, classify_direction
20+
from .tonal_graph import TonalGraph, PITCH_CLASSES, TransitionDirection
2121

2222

2323
# ---------------------------------------------------------------------------

‎holonomy_harmony/topology.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from dataclasses import dataclass, field
1212
from typing import Dict, FrozenSet, List, Optional, Set, Tuple
1313

14-
from .tonal_graph import TonalGraph, PITCH_CLASSES, Edge
14+
from .tonal_graph import TonalGraph, PITCH_CLASSES
1515

1616

1717
# ---------------------------------------------------------------------------

‎tests/test_flow.py‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
from __future__ import annotations
44

5-
import math
65
import pytest
76

87
from holonomy_harmony.tonal_graph import TonalGraph

‎tests/test_topology.py‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22

33
from __future__ import annotations
44

5-
import pytest
65

76
from holonomy_harmony.tonal_graph import TonalGraph
87
from holonomy_harmony.topology import (
98
BettiNumbers,
109
FundamentalGroupPresentation,
1110
HomologyGroup,
12-
SimplicialComplex,
1311
TopologicalInvariants,
1412
TopologyAnalyzer,
1513
)

0 commit comments

Comments
 (0)