From a83ee7f81c4fd3c969a277e7cdaa2e90732e5c7d Mon Sep 17 00:00:00 2001 From: James Turk Date: Fri, 4 Jun 2021 17:49:50 -0400 Subject: [PATCH] clean up from tutorial part 1 --- examples/quickstart.py | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/quickstart.py b/examples/quickstart.py index 2beb159..3253805 100644 --- a/examples/quickstart.py +++ b/examples/quickstart.py @@ -27,7 +27,6 @@ class EmployeeList(HtmlListPage): class EmployeeDetail(HtmlPage): def process_page(self): - position = CSS("#position").match_one(self.root) marital_status = CSS("#status").match_one(self.root) children = CSS("#children").match_one(self.root) hired = CSS("#hired").match_one(self.root)