Skip to content

Commit

Permalink
update numbers for room tables
Browse files Browse the repository at this point in the history
  • Loading branch information
georgesoteriou committed Jan 27, 2019
1 parent 2d5d8cc commit 80fe61b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions devpost/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,12 @@ def limit_categories(categories):
def export_projects():
buffer = {}
for project in projects.values():
if project["location"] < 44:
LOCATION_PREFIX = "QTR "
elif project["location"] < 75:
LOCATION_PREFIX = "SCR "
else:
LOCATION_PREFIX = "JCR "
output_project = [
project["name"],
LOCATION_PREFIX + str(project["location"]),
Expand Down

0 comments on commit 80fe61b

Please sign in to comment.