Skip to content

Commit

Permalink
fixing stupid mistake (#502)
Browse files Browse the repository at this point in the history
Co-authored-by: Marianne Azzopardi <76755256+marazzo@users.noreply.github.com>
Co-authored-by: Jason Paige <jasonpaige@users.noreply.github.com>
  • Loading branch information
3 people authored May 7, 2024
1 parent 8e1b40b commit 47e0e86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/migration/tables/recordings.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def migrate_data(self, destination_cursor, source_data):
if created_at_datetime:
created_at = parse_to_timestamp(created_at_datetime)
else:
parse_to_timestamp(recording[22])
created_at = parse_to_timestamp(recording[22])

if created_at is None:
self.failed_imports.append({
Expand Down Expand Up @@ -253,7 +253,7 @@ def migrate_data(self, destination_cursor, source_data):
if created_at_datetime:
created_at = parse_to_timestamp(created_at_datetime)
else:
parse_to_timestamp(recording[22])
created_at = parse_to_timestamp(recording[22])

if created_at is None:
self.failed_imports.append({
Expand Down

0 comments on commit 47e0e86

Please sign in to comment.