Skip to content

Commit 2e71118

Browse files
committed
Update plugin.py
1 parent 038e14c commit 2e71118

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

cppython/plugins/conan/plugin.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,13 @@ def _install_dependencies(self, *, update: bool = False) -> None:
123123
update_flag = None if not update else True
124124
check_updates_flag = update
125125

126-
logger.debug('Loading dependency graph with parameters: path=%s, remotes=%d, update=%s, check_updates=%s',
127-
path, len(remotes), update_flag, check_updates_flag)
126+
logger.debug(
127+
'Loading dependency graph with parameters: path=%s, remotes=%d, update=%s, check_updates=%s',
128+
path,
129+
len(remotes),
130+
update_flag,
131+
check_updates_flag,
132+
)
128133

129134
try:
130135
deps_graph = conan_api.graph.load_graph_consumer(
@@ -246,7 +251,7 @@ def publish(self) -> None:
246251
"""Publishes the package using conan create workflow."""
247252
logger = logging.getLogger('cppython.conan')
248253
logger.debug('Starting package publish workflow')
249-
254+
250255
# Get the project root directory where conanfile.py should be located
251256
project_root = self.core_data.project_data.project_root
252257
conanfile_path = project_root / 'conanfile.py'
@@ -271,7 +276,7 @@ def publish(self) -> None:
271276
except Exception as e:
272277
logger.error('Failed to list remotes for publish: %s', e)
273278
raise
274-
279+
275280
if not self.data.local_only:
276281
# Filter remotes to only include those specified in configuration
277282
configured_remotes = [remote for remote in all_remotes if remote.name in self.data.remotes]

0 commit comments

Comments
 (0)