From 88faf8a9753802795b65d7e248c101c8cc8c8f8d Mon Sep 17 00:00:00 2001 From: Christopher Toth Date: Sun, 14 Aug 2022 18:07:37 -0600 Subject: [PATCH] Remove type from attrs --- installer_builder2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer_builder2.py b/installer_builder2.py index e4c54d0..7c74f44 100644 --- a/installer_builder2.py +++ b/installer_builder2.py @@ -13,8 +13,8 @@ @define class InstallerBuilder: - app_name = field(converter=str, type=str) - dist_path = field(default='dist', converter=pathlib.Path, type=pathlib.Path) + app_name = field(converter=str) + dist_path = field(default='dist', converter=pathlib.Path) main_module = field(default='') version = field(default='0.0', converter=str) author = field(default='', converter=str)