From 26a0ac30d56dab7cc4f5674f9e0d0f5b4da6310c Mon Sep 17 00:00:00 2001 From: Alan Loh Date: Mon, 20 Nov 2023 18:01:30 +0100 Subject: [PATCH] Specify python file --- bin/nenupy_src_vis | 12 +++++++++++- nenupy/__init__.py | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/bin/nenupy_src_vis b/bin/nenupy_src_vis index ea61f4a..1c7b63c 100644 --- a/bin/nenupy_src_vis +++ b/bin/nenupy_src_vis @@ -1,3 +1,13 @@ +#! /usr/bin/python3 +# -*- coding: utf-8 -*- + +__author__ = "Alan Loh" +__copyright__ = "Copyright 2023, nenupy" +__credits__ = ["Alan Loh"] +__maintainer__ = "Alan" +__email__ = "alan.loh@obspm.fr" +__status__ = "Production" + from tkinter import Tk, Button, Checkbutton, Label, Entry, Frame, StringVar, IntVar, DoubleVar from tkcalendar import DateEntry from datetime import datetime, timedelta @@ -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("<>", master.update) diff --git a/nenupy/__init__.py b/nenupy/__init__.py index 17298e2..917527a 100644 --- a/nenupy/__init__.py +++ b/nenupy/__init__.py @@ -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__ = "alan.loh@obspm.fr"