We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1aaaad9 commit 626e15fCopy full SHA for 626e15f
uncle_nelson/mix.py
@@ -44,9 +44,7 @@ class Mix(NamedTuple):
44
45
46
def calculate_mix(drug: DrugType, ingredients: List[IngredientType]) -> Mix:
47
- """
48
-
49
+ """Calculates a mix based on a :class:`.DrugType` and a list of :class:`.IngredientType`.
50
51
Parameters
52
-----------
@@ -69,8 +67,6 @@ def calculate_mix(drug: DrugType, ingredients: List[IngredientType]) -> Mix:
69
67
70
68
mix = calculate_mix(..., [IngredientType.banana, IngredientType.cuke])
71
72
73
74
Returns
75
-------
76
:class:`.Mix`
0 commit comments