You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
The to_flat_dicts function in the delta.py file has parameters include_action_in_path and report_type_changes that are defined but not used in the function call to self.to_flat_rows. This results in the parameters being ineffective.
Steps to Reproduce:
Define a Delta object.
Call the to_flat_dicts method with custom values for include_action_in_path and report_type_changes.
Observe that the custom values are not passed to the self.to_flat_rows method.
Expected Behavior:
The include_action_in_path and report_type_changes parameters should be passed to the self.to_flat_rows method within the to_flat_dicts function.
Actual Behavior:
The parameters include_action_in_path and report_type_changes are not passed to the self.to_flat_rows method, making them ineffective.
Bug Report
Description:
The
to_flat_dicts
function in thedelta.py
file has parametersinclude_action_in_path
andreport_type_changes
that are defined but not used in the function call toself.to_flat_rows
. This results in the parameters being ineffective.Steps to Reproduce:
Delta
object.to_flat_dicts
method with custom values forinclude_action_in_path
andreport_type_changes
.self.to_flat_rows
method.Expected Behavior:
The
include_action_in_path
andreport_type_changes
parameters should be passed to theself.to_flat_rows
method within theto_flat_dicts
function.Actual Behavior:
The parameters
include_action_in_path
andreport_type_changes
are not passed to theself.to_flat_rows
method, making them ineffective.Code:
Suggested Fix:
Pass the
include_action_in_path
andreport_type_changes
parameters to theself.to_flat_rows
method.Environment:
The text was updated successfully, but these errors were encountered: