diff --git a/cedargrove_temperaturetools/dew_point.py b/cedargrove_temperaturetools/dew_point.py index 1c26505..e3fc774 100755 --- a/cedargrove_temperaturetools/dew_point.py +++ b/cedargrove_temperaturetools/dew_point.py @@ -23,7 +23,7 @@ """ __version__ = "0.0.0+auto.0" -__repo__ = "https://github.com/CedarGroveStudios/CircuitPython_AirQualityTools.git" +__repo__ = "https://github.com/CedarGroveStudios/CircuitPython_TemperatureTools.git" # fmt: off @@ -44,6 +44,7 @@ # fmt: on + # Dew Point converter (degrees Celsius) def dew_point(deg_c, humidity, verbose=False): """Calculate dew point temperature from measured temperature (Celsius) and diff --git a/cedargrove_temperaturetools/heat_index.py b/cedargrove_temperaturetools/heat_index.py index 8930475..c190e38 100755 --- a/cedargrove_temperaturetools/heat_index.py +++ b/cedargrove_temperaturetools/heat_index.py @@ -23,7 +23,7 @@ """ __version__ = "0.0.0+auto.0" -__repo__ = "https://github.com/CedarGroveStudios/CircuitPython_AirQualityTools.git" +__repo__ = "https://github.com/CedarGroveStudios/CircuitPython_TemperatureTools.git" # Heat Index breakpoint list diff --git a/cedargrove_temperaturetools/unit_converters.py b/cedargrove_temperaturetools/unit_converters.py index 79f6593..22be5a5 100755 --- a/cedargrove_temperaturetools/unit_converters.py +++ b/cedargrove_temperaturetools/unit_converters.py @@ -23,7 +23,7 @@ """ __version__ = "0.0.0+auto.0" -__repo__ = "https://github.com/CedarGroveStudios/CircuitPython_AirQualityTools.git" +__repo__ = "https://github.com/CedarGroveStudios/CircuitPython_TemperatureTools.git" def celsius_to_fahrenheit(deg_c):