Skip to content
Snippets Groups Projects
Commit ae99418e authored by Markus Holzer's avatar Markus Holzer
Browse files

Fixed wrong type hints

parent ed487980
No related branches found
No related tags found
1 merge request!94Fix smagorinsky
......@@ -638,14 +638,14 @@ class LBMConfig:
entropic_newton_iterations: int = None
omega_output_field: Field = None
smagorinsky: bool = False
fluctuating: bool = False
fluctuating: dict = False
temperature: Any = None
output: dict = field(default_factory=dict)
velocity_input: Field = None
density_input: Field = None
kernel_type: str = 'default_stream_collide'
kernel_type: Union[str, PdfFieldAccessor] = 'default_stream_collide'
streaming_pattern: str = 'pull'
timestep: lbmpy.advanced_streaming.Timestep = Timestep.BOTH
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment