-
Notifications
You must be signed in to change notification settings - Fork 1
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
Made all code pep8 conformant #23
base: master
Are you sure you want to change the base?
Conversation
Reformated all code to be pep8 conformant; Includes changing testing date to None, and moving ics to credentials
@app.route("/api/cal") | ||
def cal(): | ||
return parse_calendar.parse_all_calendars() | ||
|
||
#! TESTING LINE | ||
# TESTING LINE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this not be indented to the first level?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Much of a muchness, lets have it indented then
@app.route("/api/menu") | ||
def menu(): | ||
return parse_menu.main() | ||
|
||
#! TESTING LINE | ||
# TESTING LINE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gotcha, I'll do that in future
@app.route("/api/menu") | ||
def menu(): | ||
return parse_menu.main() | ||
|
||
#! TESTING LINE | ||
# TESTING LINE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# TESTING LINE | |
# ! TESTING LINE |
@app.route("/api/cal") | ||
def cal(): | ||
return parse_calendar.parse_all_calendars() | ||
|
||
#! TESTING LINE | ||
# TESTING LINE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# TESTING LINE | |
# ! TESTING LINE |
} | ||
|
||
quote_url = "https://zenquotes.io/api/today" | ||
|
||
|
||
menu_sheet = "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
menu_sheet = "" | |
menu_sheet = "" | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What was the change here, I think I'm missing something
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, seems all good
Reformated all code to be pep8 conformant; Includes changing testing date to None, and moving ics to credentials