Skip to content

Commit c0d8926

Browse files
authored
Fix ordering of keyword arguments (colmap#2440)
1 parent 7a1da99 commit c0d8926

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pycolmap/estimators/generalized_absolute_pose.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ void BindGeneralizedAbsolutePoseEstimator(py::module& m) {
7777
&PyEstimateAndRefineGeneralizedAbsolutePose,
7878
"points2D"_a,
7979
"points3D"_a,
80-
"cameras"_a,
8180
"camera_idxs"_a,
8281
"cams_from_rig"_a,
82+
"cameras"_a,
8383
"estimation_options"_a = est_options,
8484
"refinement_options"_a = ref_options,
8585
"return_covariance"_a = false,

0 commit comments

Comments
 (0)