Skip to content

Commit

Permalink
Update the documentation code example
Browse files Browse the repository at this point in the history
  • Loading branch information
klaasnicolaas committed Aug 25, 2022
1 parent 4d8e21f commit 55986ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,14 @@ from hamburg import UDPHamburg


async def main() -> None:
"""Show example on using the Parking Hamburg API client."""
"""Show example on using the UDP Hamburg API client."""
async with UDPHamburg() as client:
disabled_parkings = await client.disabled_parkings()
park_and_rides = await client.park_and_rides()
garages = await client.garages()
print(disabled_parkings)
print(park_and_rides)
print(garages)


if __name__ == "__main__":
Expand Down

0 comments on commit 55986ab

Please sign in to comment.