Skip to content

Commit

Permalink
Fix array_columns type signature
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleAalbers committed Mar 22, 2024
1 parent 908d334 commit fcfd52a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flamedisx/source.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ class Source:
#: Columns that we don't want to include in the tensor of data columns
exclude_data_tensor: ty.Tuple[str] = tuple()

#: Names of array-valued data columns
array_columns: ty.Tuple[str] = tuple()
#: Array-valued data columns: tuple of (name, length)
array_columns: ty.Tuple[ty.Tuple[str, int]] = tuple()

#: Any additional source attributes that should be configurable.
model_attributes = tuple()
Expand Down

0 comments on commit fcfd52a

Please sign in to comment.