Skip to content
Snippets Groups Projects

Removed the unresolved reference of unit_one from the installer.py

parent ac36b6ac
No related merge requests found
......@@ -8,8 +8,8 @@ import datetime
def add_location_data(session):
#unit_one = Unit(units_collected=50, provider_id=1, patient_id=1, date_recieved=datetime.datetime.now(), date_departed=datetime.datetime.now())
#session.add(unit_one)
kansas = Location(location='Kansas', units=[unit_one], address_first_line='2946 Atchison Circle')
ohio = Location(location='Ohio', units=[unit_one], address_first_line='21749 Bobwhite Ave', address_second_line='Apartment number 0049')
kansas = Location(location='Kansas', address_first_line='2946 Atchison Circle')
ohio = Location(location='Ohio', address_first_line='21749 Bobwhite Ave', address_second_line='Apartment number 0049')
nebraska = Location(location='Nebraska', address_first_line='21749 Bobwhite Ave', address_second_line='Gretna, Nebraska')
illinois = Location(location='Illinois', address_first_line='5216 North Glenwood')
texas = Location(location='Texas', address_first_line='3205 Queens Road')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment