Skip to content

Commit

Permalink
Fix removing print line (#10)
Browse files Browse the repository at this point in the history
* Forgot to remove this print line

* Update the readme file
  • Loading branch information
klaasnicolaas authored Sep 4, 2022
1 parent da0fa57 commit 253750e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,21 +48,21 @@ You can use the following parameters in your request:
- **limit** (default: 10) - How many results you want to retrieve.
- **parking_type** (default: 1) - See the list below to find the corresponding number.

| parking_type | number |
| :--------------- | :--------: |
| Place normale | 1 |
| Devant accès/garage | 2 |
| PMR | 3 |
| Dépose-minute | 4 |
| Livraison | 5 |
| Police | 6 |
| Taxi | 7 |
| Car-sharing | 8 |
| Recyclage | 9 |
| Car | 10 |
| Bus scolaire | 11 |
| Borne électrique | 12 |
| Réservé | 13 |
| parking_type | number | counter |
| :----------- | :----: | :-----: |
| Place normale | 1 | Too much |
| Devant accès/garage | 2 | 5540 |
| PMR | 3 | 305 |
| Dépose-minute | 4 | 195 |
| Livraison | 5 | 80 |
| Police | 6 | 72 |
| Taxi | 7 | 30 |
| Car-sharing | 8 | 25 |
| Recyclage | 9 | 25 |
| Car | 10 | 11 |
| Bus scolaire | 11 | 6 |
| Borne électrique | 12 | 2 |
| Réservé | 13 | 1 |

You get the following output data back with this python package:

Expand Down
1 change: 0 additions & 1 deletion namur/namur.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ async def parking_spaces(
"refine.type_parking": await self.define_type(parking_type),
},
)
print(locations)

for item in locations["records"]:
results.append(ParkingSpot.from_json(item))
Expand Down

0 comments on commit 253750e

Please sign in to comment.