Skip to content

Commit

Permalink
Combine PR-137
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Kodden committed Oct 9, 2024
1 parent df5b8f7 commit 6b85503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plsc_ordered.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def res(days, interval):

# clean up the lists, such that we return empty lists if no attribute is present, rather than [None]
for key, val in record.items():
record[key] = list(filter(None, record[key]))
record[key] = list(filter(lambda n: n is not None, val))

rdn = f"uid={username}"

Expand Down

0 comments on commit 6b85503

Please sign in to comment.