diff --git a/content/code/python/reactor_temperature.py b/content/code/python/reactor_temperature.py index 7e998f5..84049b2 100644 --- a/content/code/python/reactor_temperature.py +++ b/content/code/python/reactor_temperature.py @@ -1,4 +1,5 @@ -def check_reactor_temperature(temperature_celsius): """ +def check_reactor_temperature(temperature_celsius): + """ Checks whether temperature is above max_temperature and returns a status. """ diff --git a/content/continuous-integration.md b/content/continuous-integration.md index dae7420..c59b52c 100644 --- a/content/continuous-integration.md +++ b/content/continuous-integration.md @@ -66,7 +66,6 @@ in the [Collaborative Git lesson](https://coderefinery.github.io/git-collaborati and a file `test_functions.py` containing: ```python - from functions import add, subtract, multiply from functions import convert_fahrenheit_to_celsius as f2c import pytest