mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-03-13 20:56:54 +01:00
15 lines
255 B
Python
15 lines
255 B
Python
def ingredients_validation() -> None:
|
|
import alchemy.grimoire
|
|
|
|
print(
|
|
f'validate_ingredients("fire air"): {validate_ingredients("fire air")}'
|
|
)
|
|
|
|
|
|
def main() -> None:
|
|
ingredients_validation()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|