Skip to content

Commit

Permalink
Merge pull request #41 from lsloan/40-term-lookup
Browse files Browse the repository at this point in the history
disable term display temporarily (iss. #40)
  • Loading branch information
lsloan authored Dec 19, 2023
2 parents cd7db6d + 6cd2318 commit d1d2716
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions migration/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ async def main(api: API, account_id: int, term_ids: list[int],
account_name = await account_manager.get_name()
logger.info(f'Account ({account_id}) name: {repr(account_name)}')

term_names = await account_manager.get_term_names(term_ids)
logger.info(f'Term names…')
for term_id in term_ids:
logger.info(f' Term ({term_id}): {repr(term_names[term_id])}')
# term_names = await account_manager.get_term_names(term_ids)
logger.info(f'Term names… (temporarily disabled; see issue #40)')
# for term_id in term_ids:
# logger.info(f' Term ({term_id}): {repr(term_names[term_id])}')

tools = await account_manager.get_tools_installed_in_account()
logger.info(
Expand Down

0 comments on commit d1d2716

Please sign in to comment.