We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be906c0 commit 961c1c6Copy full SHA for 961c1c6
dweather_client/client.py
@@ -81,10 +81,9 @@ def get_gridcell_history(
81
82
result = history_dict
83
if also_return_metadata:
84
- result["metadata"] = metadata
+ result = tupleify(result) + ({"metadata": metadata},)
85
if also_return_snapped_coordinates:
86
- result["snapped_lat"] = lat
87
- result["snapped_lon"] = lon
+ result = tupleify(result) + ({"snapped to": (lat, lon)},)
88
return result
89
90
def get_tropical_storms(
requirements.txt
@@ -1,4 +1,4 @@
1
-ipfshttpclient==0.7.0
+ipfshttpclient==0.6.1
2
pandas>=1.1.4
3
pytest>=6.1.2
4
requests
0 commit comments