We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6e6614 commit bf9eddeCopy full SHA for bf9edde
1 file changed
NSE_Option_Chain_Analyzer.py
@@ -1382,7 +1382,7 @@ def main(self) -> None:
1382
(current_time.second - self.previous_time.second) / 60
1383
if time_difference >= self.time_difference_factor and self.warn_late_update:
1384
messagebox.showinfo(title="Late Update", message=f"The data from the server was last updated about "
1385
- f"{time_difference} minutes ago.")
+ f"{int(time_difference)} minutes ago.")
1386
self.previous_time = current_time
1387
else:
1388
self.root.after((self.seconds * 1000), self.main)
0 commit comments