From 574d420685701b4c870a9636410420c670cac5b6 Mon Sep 17 00:00:00 2001 From: Juan Cabanela Date: Wed, 6 Sep 2023 15:27:15 -0500 Subject: [PATCH] Fix minor typos and unused imports. --- stellarphot/settings/__init__.py | 1 + stellarphot/settings/models.py | 8 +++----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/stellarphot/settings/__init__.py b/stellarphot/settings/__init__.py index 378409df..56c8955b 100644 --- a/stellarphot/settings/__init__.py +++ b/stellarphot/settings/__init__.py @@ -1,2 +1,3 @@ +from .autowidgets import * from .models import * from .views import * diff --git a/stellarphot/settings/models.py b/stellarphot/settings/models.py index a709b959..80a21947 100644 --- a/stellarphot/settings/models.py +++ b/stellarphot/settings/models.py @@ -1,8 +1,6 @@ # Objects that contains the user settings for the program. -from enum import Enum - -from pydantic import BaseModel, Field, conint, root_validator +from pydantic import BaseModel, Field, conint from .autowidgets import CustomBoundedIntTex @@ -25,8 +23,8 @@ class ApertureSettings(BaseModel): annulus_width : int Width of the annulus in pixels. - Atributes - --------- + Attributes + ---------- inner_annulus : int Radius of the inner annulus in pixels.