Skip to content

Commit

Permalink
disable sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
natlibfi-psams committed Jul 3, 2024
1 parent d73cc10 commit d876e16
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions municipalities.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ def get_emails():
name = row[1]
emails.append((email, name))

# Sort by the second element in a list of tuples because that's where the municipality names are
emails = sorted(emails, key=lambda x: x[1])
######
# Sorthing happens by another means: EKIR-270
# Sort by the second element in a list of tuples because that's where the municipality names are
# emails = sorted(emails, key=lambda x: x[1])

# Decorate the emails with some custom values that aren't municipalities
## emails.append(
Expand Down

0 comments on commit d876e16

Please sign in to comment.