Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[updated #7009] Add a *.pyi file for auto-completion & hints. #7787

Merged
merged 39 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
5f21dc7
Add a `*.pyi` file for auto-completion & hints.
Minokori Dec 16, 2023
c886ba9
Fixes and missing Iterators
Daraan Feb 15, 2024
9e79280
Fixed Actor.parent
Daraan Feb 19, 2024
3a46c23
Fixed missing return types
Daraan Feb 29, 2024
7a2b2e2
Updated changelog
Daraan Feb 29, 2024
353e3eb
Added DSVEventArray iterator
Daraan Feb 29, 2024
5957832
Added missing type for Labelled Point
Daraan Feb 29, 2024
5c332c3
Fixed spelling misstakes
Daraan Feb 29, 2024
18674f7
Removed wrong unit indication
Daraan Mar 14, 2024
4eba07e
Added missing -> World to load_world
Daraan Mar 14, 2024
3f78f0f
Added missing return value to reload_world
Daraan Mar 14, 2024
c664716
FIX: __init__ methods do not return
Daraan Mar 14, 2024
6b2afd4
FIX: added ApplyTransform, fixed ApplyTorque
Daraan Apr 2, 2024
6095e72
Filled in missing information and types.
Daraan Apr 3, 2024
1aed9bc
ActorList.filter actually returns ActorList
Daraan Apr 3, 2024
e0010b4
Fixed CityObjectLabels
Daraan Apr 12, 2024
4a84a52
Disambiguated get_waypoint signature
Daraan Apr 12, 2024
34649f6
Added undocumented variables
Daraan Apr 12, 2024
adcf106
Corrected Sensor.is_listening
Daraan Jun 14, 2024
3d820c6
Added type hints for `values` attribute on enums
Daraan Jul 23, 2024
eb86391
Fix intendation shadowing methods
Daraan Jul 24, 2024
b979093
Fix missing @property
Daraan Jul 24, 2024
abf1ee7
Formatted some docstring to be shorter
Daraan Jul 24, 2024
556c93c
Added stubs for HUD drawing
Daraan Jul 24, 2024
76a0fbd
Corrected and more precise type-hints
Daraan Jul 24, 2024
224cae0
Improved get_waypoint disambiguation
Daraan Jul 24, 2024
116cb5c
Fix spelling mistakes
Daraan Jul 24, 2024
00b0efb
Better usage of Enum if typing.Self is availiable
Daraan Jul 29, 2024
ad4a777
Fix: Enum values were tuples. Added Flag or Int to Enums
Daraan Jul 29, 2024
6f9e126
Fixes for wrong stubs
Daraan Jul 29, 2024
3b88788
Added self parameter to property signatures
Daraan Jul 29, 2024
416206b
Various fixes
Daraan Jul 29, 2024
17120e0
Added setters for VehicleControl
Daraan Jul 29, 2024
9a77f5a
Improved get_waypoints and Literal type hints
Daraan Jul 29, 2024
ba28254
Corrected [try_]spawn_actor keyword name
Daraan Aug 1, 2024
b04f41e
Added Transform.inverse_transform and corrected signature
Daraan Aug 1, 2024
3e82831
Improved Callable and callbacks signature
Daraan Aug 8, 2024
49562b7
Corrections and additions
Daraan Aug 15, 2024
53816cc
Fixed Vector arithmetic
Daraan Aug 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
* PythonAPI `Sensor.is_listening` was defined twice (property and method), cleaned and clarified it as a method.
* Added V2X sensors for cooperative awareness message and custom user-defined messages to support vehicle-to-vehicle communication
* Added named tuples for BasicAgent.py's detection result to allow for type-hints and better semantics.
* Added type-hint support for the PythonAPI


## CARLA 0.9.15
Expand Down
Loading