reports: Balance.clean_copy() creates new Balance with given tolerance.
This commit is contained in:
parent
0f7a154ff4
commit
355a48381c
1 changed files with 2 additions and 2 deletions
|
@ -174,8 +174,8 @@ class Balance(Mapping[str, data.Amount]):
|
||||||
if tolerance is None:
|
if tolerance is None:
|
||||||
tolerance = self.tolerance
|
tolerance = self.tolerance
|
||||||
return type(self)(
|
return type(self)(
|
||||||
amount for amount in self.values()
|
(amount for amount in self.values() if abs(amount.number) >= tolerance),
|
||||||
if abs(amount.number) >= tolerance
|
tolerance,
|
||||||
)
|
)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|
Loading…
Reference in a new issue