Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
5b8555c0
Commit
5b8555c0
authored
May 30, 2022
by
Branch Vincent
Committed by
Arun Babu Neelicattu
May 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
plugins: hide deprecated command
parent
d5c22c26
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
0 deletions
+4
-0
src/poetry/console/commands/plugin/add.py
+1
-0
src/poetry/console/commands/plugin/remove.py
+2
-0
src/poetry/console/commands/plugin/show.py
+1
-0
No files found.
src/poetry/console/commands/plugin/add.py
View file @
5b8555c0
...
@@ -43,6 +43,7 @@ It works similarly to the <c1>add</c1> command:
...
@@ -43,6 +43,7 @@ It works similarly to the <c1>add</c1> command:
{deprecation}
{deprecation}
"""
"""
hidden
=
True
def
handle
(
self
)
->
int
:
def
handle
(
self
)
->
int
:
self
.
line_error
(
self
.
deprecation
)
self
.
line_error
(
self
.
deprecation
)
...
...
src/poetry/console/commands/plugin/remove.py
View file @
5b8555c0
...
@@ -36,6 +36,8 @@ class PluginRemoveCommand(Command):
...
@@ -36,6 +36,8 @@ class PluginRemoveCommand(Command):
"</warning>"
"</warning>"
)
)
hidden
=
True
def
handle
(
self
)
->
int
:
def
handle
(
self
)
->
int
:
self
.
line_error
(
self
.
help
)
self
.
line_error
(
self
.
help
)
...
...
src/poetry/console/commands/plugin/show.py
View file @
5b8555c0
...
@@ -19,6 +19,7 @@ class PluginShowCommand(Command):
...
@@ -19,6 +19,7 @@ class PluginShowCommand(Command):
"<warning>This command is deprecated. Use <c2>self show plugins</> "
"<warning>This command is deprecated. Use <c2>self show plugins</> "
"command instead.</warning>"
"command instead.</warning>"
)
)
hidden
=
True
def
handle
(
self
)
->
int
:
def
handle
(
self
)
->
int
:
self
.
line_error
(
self
.
help
)
self
.
line_error
(
self
.
help
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment