-
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
Matchday command #22
Matchday command #22
Conversation
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.
This looks good @maxUser! We should probably remove some files but otherwise the code looks great!
.gitignore
Outdated
@@ -1,4 +1,5 @@ | |||
venv | |||
__pycache__ | |||
cogs/__pycache__ | |||
the_mines/.DS_Store | |||
the_mines/data/.DS_Store |
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.
This should not be getting added. Is it part of the .gitignore
?
name=value[0][0] + "-" + value[1][0], | ||
value=value[0][1] + "-" + value[1][1], |
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 may be a cleaner way of joining the items in the tuple rather than indexing. Indexing can be difficult to understand if you don't know the exact structure of the tuple being passed in. Maybe we could look into using an iterator with .join()
?
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.
Great idea. Can you help me implement this?
@maxUser LGTM, merge away. |
Description
Resolves #19
Special Notes
Expected Version Bump
Checklist:
black .