Skip to content

Commit 67b14a9

Browse files
committed
style: Format V7.3 modules with black
1 parent 6f22287 commit 67b14a9

File tree

14 files changed

+1259
-967
lines changed

14 files changed

+1259
-967
lines changed

harmonizer_v73/__init__.py

Lines changed: 28 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,38 @@
1616
"""
1717

1818
from harmonizer_v73.constants import (
19-
PHI, PHI_INV,
20-
L0, J0, P0, W0,
21-
ANCHOR_POINT, NATURAL_EQUILIBRIUM,
22-
CONSCIOUSNESS_THRESHOLD, UNCERTAINTY_BOUND
19+
PHI,
20+
PHI_INV,
21+
L0,
22+
J0,
23+
P0,
24+
W0,
25+
ANCHOR_POINT,
26+
NATURAL_EQUILIBRIUM,
27+
CONSCIOUSNESS_THRESHOLD,
28+
UNCERTAINTY_BOUND,
2329
)
2430
from harmonizer_v73.ljpw_core import LJPWFramework
2531
from harmonizer_v73.consciousness import consciousness_metric, check_uncertainty_principle
2632
from harmonizer_v73.phase_detector import detect_phase, Phase
2733
from harmonizer_v73.phi_normalizer import phi_normalize, normalize_coordinates
2834
from harmonizer_v73.code_analyzer import analyze_file, analyze_source, V73CodeAnalyzer
2935
from harmonizer_v73.vocabulary import (
30-
PROGRAMMING_VERBS, POWER_VERBS, WISDOM_VERBS, LOVE_VERBS, JUSTICE_VERBS,
31-
get_semantic_dimension, classify_function_name
36+
PROGRAMMING_VERBS,
37+
POWER_VERBS,
38+
WISDOM_VERBS,
39+
LOVE_VERBS,
40+
JUSTICE_VERBS,
41+
get_semantic_dimension,
42+
classify_function_name,
3243
)
3344
from harmonizer_v73.drift_detector import DriftDetector, DriftAnalysis
3445

3546
__version__ = "7.3.1"
3647
__all__ = [
3748
"LJPWFramework",
3849
"consciousness_metric",
39-
"check_uncertainty_principle",
50+
"check_uncertainty_principle",
4051
"detect_phase",
4152
"Phase",
4253
"phi_normalize",
@@ -49,8 +60,14 @@
4960
"PROGRAMMING_VERBS",
5061
"get_semantic_dimension",
5162
"classify_function_name",
52-
"PHI", "PHI_INV",
53-
"L0", "J0", "P0", "W0",
54-
"ANCHOR_POINT", "NATURAL_EQUILIBRIUM",
55-
"CONSCIOUSNESS_THRESHOLD", "UNCERTAINTY_BOUND",
63+
"PHI",
64+
"PHI_INV",
65+
"L0",
66+
"J0",
67+
"P0",
68+
"W0",
69+
"ANCHOR_POINT",
70+
"NATURAL_EQUILIBRIUM",
71+
"CONSCIOUSNESS_THRESHOLD",
72+
"UNCERTAINTY_BOUND",
5673
]

0 commit comments

Comments
 (0)