File tree Expand file tree Collapse file tree
src/ewoks/_requirements/managers/utils Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515class BaseManager :
1616 """Defines the interface all package managers must implement.
1717
18- If `MyManager` is an impementation of this interface then
19- to get the Ewoks workflow requirements like this:
18+ If `MyManager` is an implementation of this interface then
19+ Ewoks workflow requirements can be obtained like this:
2020
2121 .. code-block:: python
2222
@@ -28,7 +28,7 @@ class BaseManager:
2828 .. code-block:: python
2929
3030 manager = MyManager()
31- install_requirements .install_requirements(requirements)
31+ manager .install_requirements(requirements)
3232 """
3333
3434 NAME = NotImplemented
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ def _detect_manager() -> Optional[BaseManager]:
6666 # Infer most likely package manager
6767 counts = _installer_distribution_count ()
6868 if set (counts ) & set (available_managers ):
69- # Use the number of installed distibutions as the score
69+ # Use the number of installed distributions as the score
7070 crit = "distribution count"
7171 scores = {name : counts .get (name , - 1 ) for name in available_managers }
7272 else :
You can’t perform that action at this time.
0 commit comments