weather.py

This commit is contained in:
njmason2
2025-10-22 17:52:35 -04:00
parent 063ea37fa1
commit 0a8645e8c3

View File

@@ -15,10 +15,10 @@ from weather.weather_apis import (
get_forecast
)
def print_weather(location=None, metric=False, verbose=False):
def print_weather(location=None, metric=False, verbose=True):
"""Prints out a weather report using the provided location, or using
the user's current location if no location was provided.
When metric is True, prints out the weather in metric units.
When verbose is True, prints out a more detailed report.
"""
print("Not finished...") # YOUR CODE HERE!