Skip to content

Commit

Permalink
Remove type from attrs
Browse files Browse the repository at this point in the history
  • Loading branch information
ctoth committed Aug 15, 2022
1 parent 07bf66c commit 88faf8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installer_builder2.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 88faf8a

Please sign in to comment.