Skip to content

Commit

Permalink
removed period symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
hitblast committed Jun 29, 2023
1 parent 90bc5ae commit 6d94178
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nimip.nim
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ proc run*(): Future[void] {.async.} =
tb.write(4, 16, "Longitude : ", fgCyan, fmt"{ip.longitude}", fgWhite)

tb.drawHorizLine(1, primaryLength - 2, 17)
tb.write(primaryLength, 13, fgGreen, fmt"{ip.remainingRequests}", fgWhite, " remaining requests.")
tb.write(primaryLength, 17, fgGreen, fmt"{ip.timeUntilReset}s", fgWhite, " until cache reset.")
tb.write(primaryLength, 13, fgGreen, fmt"{ip.remainingRequests}", fgWhite, " remaining requests")
tb.write(primaryLength, 17, fgGreen, fmt"{ip.timeUntilReset}s", fgWhite, " until cache reset")


# Finally, display the entire thing.
Expand Down

0 comments on commit 6d94178

Please sign in to comment.