-
Notifications
You must be signed in to change notification settings - Fork 7
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
Added filename and signature style regulations #8
base: master
Are you sure you want to change the base?
Conversation
I like filename, can we revisit signature in person? |
See meeting agenda for 8/23/20
STYLE.md
Outdated
# /usr/bin/env python3 | ||
|
||
''' | ||
File: filename.py | ||
----------------- | ||
''' |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
```python | ||
# /usr/bin/env python3 | ||
|
||
''' | ||
File: filename.py | ||
----------------- | ||
''' | ||
``` |
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.
I hate that this was such a meandering process to get here... Can we remove the line between the shebang and use double quotes for the comment? Good to merge after your OK, @cooper-mj.
```python | |
# /usr/bin/env python3 | |
''' | |
File: filename.py | |
----------------- | |
''' | |
``` | |
# /usr/bin/env python3 | |
""" | |
File: filename.py | |
----------------- | |
""" |
No description provided.