Skip to content

Commit 2bcce4f

Browse files
committed
Uncomment code to fix linting
1 parent 7363c61 commit 2bcce4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/xmigrate/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ def _apply_sharing(self) -> None: # noqa: C901, PLR0912
616616
def run(self) -> None:
617617
"""Migrate a project from source to destination XNAT instance."""
618618
start = time.time()
619-
# self._create_users()
619+
self._create_users()
620620

621621
# Iterate over all projects
622622
for mapper, source_info, destination_info in zip(
@@ -629,8 +629,8 @@ def run(self) -> None:
629629

630630
self._logger.info("Migrating project: %s -> %s", source_info.id, destination_info.id)
631631

632-
# self._get_resource_metadata(resource="subjects")
633-
# self._get_resource_metadata(resource="experiments")
632+
self._get_resource_metadata(resource="subjects")
633+
self._get_resource_metadata(resource="experiments")
634634
self._create_resources()
635635
self._export_id_map(
636636
resource="subjects",

0 commit comments

Comments
 (0)