Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkram committed Sep 11, 2024
1 parent fbba317 commit 023544f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion binstar_client/commands/notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def add_parser(subparsers):
description=description,
epilog=__doc__)
parser.add_argument(
'args',
'args',
nargs='+',
help='Catch-all for args',
action='store'
Expand Down
14 changes: 8 additions & 6 deletions binstar_client/deprecations.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
DEPRECATION_MESSAGE_NOTEBOOKS_PROJECTS_ENVIRONMENTS_REMOVED = (
"The Projects, Notebooks, and Environments features have been removed. "
"See our release notes (https://docs.anaconda.com/anacondaorg/release-notes/) "
"for more information. "
"If you have any questions, please contact [email protected]."
)
"""Re-usable helpers for deprecating functionality."""

DEPRECATION_MESSAGE_NOTEBOOKS_PROJECTS_ENVIRONMENTS_REMOVED = " ".join([
"The Projects, Notebooks, and Environments features have been removed.",
"See our release notes (https://docs.anaconda.com/anacondaorg/release-notes/)",
"for more information.",
"If you have any questions, please contact [email protected].",
])

0 comments on commit 023544f

Please sign in to comment.