Skip to content

Commit

Permalink
Fixing bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
astronomerritt committed Mar 7, 2024
1 parent 2ffc6f8 commit 70d2094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adler/dataclasses/DataSchema.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def __init__(self, ssObjectId, population_location, sql_query, sql_filename=None
self.ssObjectId = ssObjectId
self.population_location = population_location
self.populate(self.population_location, sql_query, sql_filename)
self.num_obs = len(midpointMjdTai)
self.num_obs = len(self.midpointMjdTai)
self.calculate_reduced_mag()

def populate_from_table(self, data_table):
Expand Down

0 comments on commit 70d2094

Please sign in to comment.