Description
The method _excution in dotflow/core/execution.py has a typo — it is missing the letter e. It should be _execution.
Location
dotflow/core/execution.py
# Line ~100 — definition
def _excution(self, _flow_callback): # ← typo
# Same file — call site
self._excution(_flow_callback) # ← typo
Expected Fix
Rename the method to _execution in both the definition and the call site:
def _execution(self, _flow_callback):
...
self._execution(_flow_callback)
Impact
- Misleads contributors reading the code
- IDEs and static analysers flag the inconsistency
- Makes it harder to search/navigate the codebase
Steps
- Open
dotflow/core/execution.py
- Rename
_excution → _execution in the method definition
- Rename the call
self._excution → self._execution
- Run the test suite to confirm nothing is broken
Description
The method
_excutionindotflow/core/execution.pyhas a typo — it is missing the lettere. It should be_execution.Location
dotflow/core/execution.pyExpected Fix
Rename the method to
_executionin both the definition and the call site:Impact
Steps
dotflow/core/execution.py_excution→_executionin the method definitionself._excution→self._execution