Skip to content

Commit

Permalink
version added
Browse files Browse the repository at this point in the history
  • Loading branch information
lmponcio committed May 10, 2023
1 parent 4efdf51 commit 4ae2ed0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from openpyxl.styles import PatternFill, Alignment
from openpyxl.utils import get_column_letter

__version__="v0.1"

def log_config():
"""Performs a logging basic setup"""
Expand Down Expand Up @@ -51,7 +52,7 @@ class Gui:

def __post_init__(self):
self.tk = tk.Tk()
self.tk.title("Documents Filter")
self.tk.title("Documents Filter "+__version__)
self.tk.geometry("500x250")
self.tk.iconbitmap(default=os.path.join(self.base_dir, "logo.ico"))
self.full_bar = 480
Expand Down Expand Up @@ -96,7 +97,7 @@ def main():
gui = Gui(base_dir)
tk.Button(
gui.tk,
text="Run Filter",
text="Run Filters",
command=lambda: run_filter(gui),
width="30",
height="2",
Expand Down

0 comments on commit 4ae2ed0

Please sign in to comment.