Skip to content

Commit

Permalink
refactor: address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AfaqShuaib09 committed Jan 2, 2025
1 parent 3d96d6b commit d797485
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,8 @@ def __init__(
self.error_logs = {key: [] for key in CSV_LOADER_ERROR_LOG_SEQUENCE}
self.ingestion_summary = self._initialize_ingestion_summary()
self.course_uuids = {} # to show the discovery course ids for each processed course
self.obj_cache = {
'org': {}, 'course_type': {}, 'course_run_type': {}
} # cache for organization, course type and course run type objects to avoid redundant queries
# cache for organization, course type and course run type objects to avoid redundant queries
self.obj_cache = {'org': {}, 'course_type': {}, 'course_run_type': {}}
self.product_type = product_type
self.product_source = self._get_product_source(product_source)
self.reader = self._initialize_csv_reader(csv_path, csv_file, use_gspread_client)
Expand Down

0 comments on commit d797485

Please sign in to comment.