simonmichael / hledger

Robust, fast, intuitive plain text accounting tool with CLI, TUI and web interfaces.
https://hledger.org
GNU General Public License v3.0
2.97k stars 317 forks source link

fix: Hide ambiguous instance for (!?) #2174

Closed Vekhir closed 7 months ago

Vekhir commented 7 months ago

base 4.19.0.0 introduces Data.List.!? which clashes with Data.Vector.!?, the latter of which is needed for vector operations.

This PR hides Data.List.!? in the relevant locations to prevent the name clash.

simonmichael commented 7 months ago

Thanks!