We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f2a7713 + d3e7af2 commit 4a35becCopy full SHA for 4a35bec
sc2ts/metadata.py
@@ -80,7 +80,9 @@ def date_sample_counts(self):
80
counts = collections.Counter()
81
with self.conn:
82
for row in self.conn.execute(sql):
83
- counts[row["date"]] = row["COUNT(*)"]
+ date = row["date"]
84
+ if len(date) == 10 and date.startswith("20"):
85
+ counts[date] = row["COUNT(*)"]
86
return counts
87
88
def get_days(self, date=None):
0 commit comments