Skip to content

Commit 40c043d

Browse files
committed
Fixed example in readme
1 parent e44147f commit 40c043d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Example Usage
99
You can specify the sections you want to pull from the RESTful API.
1010
<pre><code>
1111
sections = ('bill_id', 'sponsor', 'committees')
12-
result = Bill.get_bill(bill_id='hr3-112', sections=sections)
13-
print bill.sponsor_id, bill.vetoed, bill.last_action.text
12+
bill = Bill.get_bill(bill_id='hr3-112', sections=sections)
13+
print bill.sponsor_id
1414
</pre></code>
1515

1616
Otherwise, it uses the default that's specified in the library.

0 commit comments

Comments
 (0)