# Create the State objects.
+de = State(10, 'Delaware')
dc = State(11, 'District of Columbia')
md = State(24, 'Maryland')
ny = State(36, 'New York')
# Now we add all of the counties belonging to each state, starting
-# with Washington D.C.
+# with Delaware.
+
+de.add_county(1, 'Kent')
+de.add_county(3, 'New Castle')
+de.add_county(5, 'Sussex')
+
+
+# Washington D.C.
dc.add_county(1, 'District of Columbia', True)
# Now that the counties have been added, create a list of states to
# pass to the download_lines function.
-states = [dc, md, ny, pa, va, wv]
+states = [de, dc, md, ny, pa, va, wv]
Data.download_lines(states)