clean up from tutorial part 1

This commit is contained in:
James Turk 2021-06-04 17:49:50 -04:00
parent 1cb031c3b8
commit a83ee7f81c

View File

@ -27,7 +27,6 @@ class EmployeeList(HtmlListPage):
class EmployeeDetail(HtmlPage): class EmployeeDetail(HtmlPage):
def process_page(self): def process_page(self):
position = CSS("#position").match_one(self.root)
marital_status = CSS("#status").match_one(self.root) marital_status = CSS("#status").match_one(self.root)
children = CSS("#children").match_one(self.root) children = CSS("#children").match_one(self.root)
hired = CSS("#hired").match_one(self.root) hired = CSS("#hired").match_one(self.root)