Skip to content

Commit

Permalink
update __init__ entity.tag (#571)
Browse files Browse the repository at this point in the history
* update __init__ entity.tag

* entity.tag.Tag.__init__: undo skip casting

Co-authored-by: Emanuel Schmid <[email protected]>
  • Loading branch information
2 people authored and Simona Meiler committed Nov 22, 2022
1 parent c920e23 commit 16f7de0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion climada/entity/tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ class Tag():
description of the data
"""

def __init__(self, file_name='', description=''):
def __init__(self,
file_name: str = '',
description: str = ''):
"""Initialize values.
Parameters
Expand Down

0 comments on commit 16f7de0

Please sign in to comment.