From 69ce05886d3bff4531aab41d75cf4adcdbc96610 Mon Sep 17 00:00:00 2001 From: oto Date: Wed, 17 Aug 2022 12:38:04 +0300 Subject: [PATCH] did some formatting --- Main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Main.py b/Main.py index a6b5b38..56950fd 100644 --- a/Main.py +++ b/Main.py @@ -1,7 +1,8 @@ from tkinter import * from GameLogic import * +VERSION_NUMBER = "0.1" root = Tk() -root.title("Tic-Far-Toe v0.1") +root.title("Tic-Far-Toe v{}".format(VERSION_NUMBER)) root.mainloop() \ No newline at end of file