From ac2c654e9c4090f4f34ccb3ceb5ca35c90c691ab Mon Sep 17 00:00:00 2001 From: czoido Date: Mon, 13 Mar 2023 12:52:51 +0100 Subject: [PATCH] fix parser --- conan/cli/commands/profile.py | 1 - 1 file changed, 1 deletion(-) diff --git a/conan/cli/commands/profile.py b/conan/cli/commands/profile.py index fbfa27cd698..db52b830b75 100644 --- a/conan/cli/commands/profile.py +++ b/conan/cli/commands/profile.py @@ -43,7 +43,6 @@ def profile_path(conan_api, parser, subparser, *args): """ Show profile path location. """ - add_profiles_args(subparser) subparser.add_argument("name", help="Profile name") args = parser.parse_args(*args) return conan_api.profiles.get_path(args.name)