Skip to content

Commit 6ad52b6

Browse files
authored
Merge pull request #7 from AccelerationConsortium/copilot/add-custom-movements-flow
Fix ImportError: remove non-existent flow imports from __init__.py
2 parents 8f594b9 + 6b4d29c commit 6ad52b6

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## [Unreleased]
44

55
### Fixed
6+
- 2025-11-19: Fixed ImportError by removing non-existent flow imports (custom_movements_flow, test_sequence_flow, duty_cycle_monitoring_flow, scheduled_duty_cycle_check) from src/progressive_automations_python/__init__.py. These flows only exist in scripts/prefect_flows.py, not in the package module. (Fixes job 55773363544)
67
- 2025-11-19: tests: Add tests/conftest.py to mock RPi.GPIO in CI so pytest can run in non-Raspberry Pi environments. (Fixes job 55770449647)
78

89
## Version 0.1 (development)

src/progressive_automations_python/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@
3939

4040
from progressive_automations_python.prefect_flows import (
4141
simple_movement_flow,
42-
custom_movements_flow,
43-
test_sequence_flow,
44-
duty_cycle_monitoring_flow,
45-
scheduled_duty_cycle_check
4642
)
4743

4844
from progressive_automations_python.deployment import (
@@ -64,6 +60,5 @@
6460
"get_duty_cycle_status",
6561
"show_duty_cycle_status",
6662
"simple_movement_flow",
67-
"simple_movement_flow",
6863
"create_deployments"
6964
]

0 commit comments

Comments
 (0)