Add import path shortcut to __init__,py#149
Closed
balac-ode wants to merge 1 commit intomagmax:masterfrom
Closed
Conversation
staticdev
requested changes
Jan 1, 2022
Collaborator
staticdev
left a comment
There was a problem hiding this comment.
Please keep the alphabetical order on imports.
Merged
Collaborator
|
@balac-ode It would be great if you rebased onto master and ran Once that is done we can merge this 👍🏼 |
Collaborator
|
@Cube707 looks like this user abandoned github after this PR... |
Collaborator
|
You're probably right, he doesn't seem to be active. Lets give him a couple more day and that we can close this. |
Collaborator
|
Suggested edit: diff --git a/src/inquirer/__init__.py b/src/inquirer/__init__.py
index 206d337..16deadf 100644
--- a/src/inquirer/__init__.py
+++ b/src/inquirer/__init__.py
@@ -14,8 +14,8 @@ from inquirer.shortcuts import confirm
from inquirer.shortcuts import editor
from inquirer.shortcuts import list_input
from inquirer.shortcuts import password
-from inquirer.shortcuts import text
from inquirer.shortcuts import path
+from inquirer.shortcuts import text
__all__ = [
@@ -35,5 +35,6 @@ __all__ = [
"password",
"confirm",
"list_input",
+ "path",
"checkbox",
]
|
Collaborator
|
I just experimented with the VS code integration of GitHub PRs and how one can suggest and/or push chnages.... |
Collaborator
|
closed due to inactivity |
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.
Add import path shortcut to
__init__,py