Conversation
stickler-ci
reviewed
Jul 17, 2018
|
|
||
|
|
||
| if __name__ == '__main__': | ||
| main() No newline at end of file |
Contributor
There was a problem hiding this comment.
W292 no newline at end of file
|
|
||
|
|
||
| if __name__ == '__main__': | ||
| main() No newline at end of file |
Contributor
There was a problem hiding this comment.
W292 no newline at end of file
stickler-ci
reviewed
Jul 18, 2018
| write_filename.write(content) | ||
| write_filename.close() | ||
|
|
||
| print(content) No newline at end of file |
Contributor
There was a problem hiding this comment.
W292 no newline at end of file
| @@ -0,0 +1,17 @@ | |||
| import os, re | |||
Contributor
There was a problem hiding this comment.
E401 multiple imports on one line
|
|
||
|
|
||
| regex = input("Enter a regex: ") | ||
| regex_search(regex) No newline at end of file |
Contributor
There was a problem hiding this comment.
W292 no newline at end of file
| # py.exe mcb.pyw <keyword> - Loads keyword to clipboard. | ||
| # py.exe mcb.pyw list - Loads all keywords to clipboard. | ||
|
|
||
| import shelve, pyperclip, sys |
Contributor
There was a problem hiding this comment.
E401 multiple imports on one line
| if sys.argv[1].lower() == 'list': | ||
| pyperclip.copy(str(list(mcbShelf.keys()))) | ||
| if sys.argv[1].lower() == 'delete': | ||
| for key in mcbShelf.keys(): |
Contributor
There was a problem hiding this comment.
E111 indentation is not a multiple of four
| pyperclip.copy(str(list(mcbShelf.keys()))) | ||
| if sys.argv[1].lower() == 'delete': | ||
| for key in mcbShelf.keys(): | ||
| del mcbShelf[key] |
Contributor
There was a problem hiding this comment.
E111 indentation is not a multiple of four
| elif sys.argv[1] in mcbShelf: | ||
| pyperclip.copy(mcbShelf[sys.argv[1]]) | ||
|
|
||
| mcbShelf.close() No newline at end of file |
Contributor
There was a problem hiding this comment.
W292 no newline at end of file
Contributor
Author
|
@kuszcjan lesson_09 |
kuszcjan
requested changes
Jul 24, 2018
| @@ -0,0 +1,17 @@ | |||
| import os, re | |||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@kuszcjan lesson_09