Comment unused sections

This commit is contained in:
Colin Goutte 2021-10-11 16:17:31 +02:00
parent 588c3bf1db
commit caac05b03a
1 changed files with 3 additions and 0 deletions

View File

@ -116,6 +116,7 @@ def make_id_key(channel, keys=None, sep="#", tuple_=False):
return {kvalue: channel}
"""
def raw_filename():
return "raw_" + str(datetime.date.today()).replace("-", "_") + ".json"
@ -147,4 +148,6 @@ def savediff(date, diff, *, filename=diff_filename):
for d in diff:
data = {"date": date}
data.update(zip(("name", "before", "after"), d))
writer.writerow(data)
"""