Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sajanrajdev committed Jun 19, 2024
1 parent 964625a commit 4d187cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/issue/1545/bip_105_execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def _range_prices(position_manager, token_id, decimals_diff):
range_1 = 1 / (BASE ** tick_upper) * 10 ** decimals_diff
C.print(f"[green]range_0: {range_0}[/green]")
C.print(f"[green]range_1: {range_1}\n[/green]")
C.print(f"[green]price0: {1/range_0}[/green]") # To match UniV3 UI
C.print(f"[green]price1: {1/range_1}\n[/green]") # To match UniV3 UI
C.print(f"[green]price0: {1/range_0}[/green]") # To match UniV3 UI
C.print(f"[green]price1: {1/range_1}\n[/green]") # To match UniV3 UI

return range_0, range_1

0 comments on commit 4d187cd

Please sign in to comment.