Commit 5edab33 1 parent 085babd commit 5edab33 Copy full SHA for 5edab33
File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -3764,7 +3764,7 @@ def get(
3764
3764
excluded. If passed, do not pass `exclude`.
3765
3765
3766
3766
exclude : list[str] | str | None
3767
- Symbol or symbols to include . All other symbols will be
3767
+ Symbol or symbols to exclude . All other symbols will be
3768
3768
included. If passed, do not pass `include`.
3769
3769
3770
3770
side : Literal['left', 'right'] | None, default: None
Original file line number Diff line number Diff line change 24
24
ERROR404 = {"error" : "HTTP 404 Not Found. Please try again" }
25
25
26
26
27
+ # TODO remove when FutureWarning fixed on yahooquery, for example if
28
+ # https://github.com/dpguthrie/yahooquery/pull/262 is merged and inlcuded to a release
29
+ warnings .filterwarnings (
30
+ "ignore" , "A value is trying to be set on a copy of a DataFrame" , FutureWarning
31
+ )
32
+ warnings .filterwarnings ("ignore" , "'S' is deprecated" , FutureWarning )
33
+
34
+
27
35
class YahooAPIError (errors .APIError ):
28
36
"""A Yahoo API endpoint is not available."""
29
37
You can’t perform that action at this time.
0 commit comments