We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Assuming the get_report documentation is correct, this should be working.
import myfitnesspal import datetime client = myfitnesspal.Client() may = datetime.date(2022, 5, 1) june = datetime.date(2022, 6, 1) report = client.get_report("Weight", "Progress", may, june)`
in get_report if not upper_bound >= date >= lower_bound: TypeError: can't compare datetime.datetime to datetime.date
Am I doing something wrong?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Assuming the get_report documentation is correct, this should be working.
in get_report if not upper_bound >= date >= lower_bound: TypeError: can't compare datetime.datetime to datetime.date
Am I doing something wrong?
The text was updated successfully, but these errors were encountered: