Skip to content

Typo: method _excution should be _execution in execution.py #80

@FernandoCelmer

Description

@FernandoCelmer

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

  1. Open dotflow/core/execution.py
  2. Rename _excution_execution in the method definition
  3. Rename the call self._excutionself._execution
  4. Run the test suite to confirm nothing is broken

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workinggood first issueGood for newcomers

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions