-
Notifications
You must be signed in to change notification settings - Fork 310
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix deprecation warning from pandas.read_json #2346
Conversation
This pull request was exported from Phabricator. Differential Revision: D55978442 |
Summary: Addresses the following warning: ``` Passing literal json to 'read_json' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. ``` Seen in dev API tutorial: https://ax.dev/tutorials/gpei_hartmann_developer.html Differential Revision: D55978442
b6eab1a
to
4c1a25d
Compare
This pull request was exported from Phabricator. Differential Revision: D55978442 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2346 +/- ##
=======================================
Coverage 94.91% 94.91%
=======================================
Files 491 491
Lines 47788 47867 +79
=======================================
+ Hits 45356 45434 +78
- Misses 2432 2433 +1 ☔ View full report in Codecov by Sentry. |
Summary: Addresses the following warning: ``` Passing literal json to 'read_json' is deprecated and will be removed in a future version. To read from a literal string, wrap it in a 'StringIO' object. ``` Seen in dev API tutorial: https://ax.dev/tutorials/gpei_hartmann_developer.html Reviewed By: mgarrard Differential Revision: D55978442
4c1a25d
to
de2af43
Compare
This pull request was exported from Phabricator. Differential Revision: D55978442 |
This pull request has been merged in 415f84d. |
Summary:
Addresses the following warning:
Seen in dev API tutorial: https://ax.dev/tutorials/gpei_hartmann_developer.html
Differential Revision: D55978442