mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-06 18:49:26 +08:00
Enable ruff S113 rule (#11375)
* Enable ruff S113 rule * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
@ -11,13 +11,13 @@ BASE_URL = "https://api.carbonintensity.org.uk/intensity"
|
||||
|
||||
# Emission in the last half hour
|
||||
def fetch_last_half_hour() -> str:
|
||||
last_half_hour = requests.get(BASE_URL).json()["data"][0]
|
||||
last_half_hour = requests.get(BASE_URL, timeout=10).json()["data"][0]
|
||||
return last_half_hour["intensity"]["actual"]
|
||||
|
||||
|
||||
# Emissions in a specific date range
|
||||
def fetch_from_to(start, end) -> list:
|
||||
return requests.get(f"{BASE_URL}/{start}/{end}").json()["data"]
|
||||
return requests.get(f"{BASE_URL}/{start}/{end}", timeout=10).json()["data"]
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
Reference in New Issue
Block a user