Skip to content

Commit

Permalink
Specify python file
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanLoh committed Nov 20, 2023
1 parent 15dac91 commit 26a0ac3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion bin/nenupy_src_vis
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#! /usr/bin/python3
# -*- coding: utf-8 -*-

__author__ = "Alan Loh"
__copyright__ = "Copyright 2023, nenupy"
__credits__ = ["Alan Loh"]
__maintainer__ = "Alan"
__email__ = "[email protected]"
__status__ = "Production"

from tkinter import Tk, Button, Checkbutton, Label, Entry, Frame, StringVar, IntVar, DoubleVar
from tkcalendar import DateEntry
from datetime import datetime, timedelta
Expand Down Expand Up @@ -313,7 +323,7 @@ class BaseInputFrame(Frame, ABC):
day=datetime.now().day,
date_pattern="yyyy-mm-dd",
width=ENTRY_WIDTH,
font="Arial 14",
#font="Arial 14",
justify="center"
)
self.date_entry.bind("<<DateEntrySelected>>", master.update)
Expand Down
2 changes: 1 addition & 1 deletion nenupy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__copyright__ = "Copyright 2023, nenupy"
__credits__ = ["Alan Loh"]
__license__ = "MIT"
__version__ = "2.5.1"
__version__ = "2.5.2"
__maintainer__ = "Alan Loh"
__email__ = "[email protected]"

Expand Down

0 comments on commit 26a0ac3

Please sign in to comment.