Skip to content
Snippets Groups Projects
Commit bfeb7013 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Remove type hint unsupported in python 3.5 (makes tests pass for Python 3.5)

parent 3ce5c825
No related branches found
No related tags found
No related merge requests found
...@@ -148,7 +148,7 @@ def get_pipe_velocity_field(domain_size, u_max, flow_direction=0, diameter=None) ...@@ -148,7 +148,7 @@ def get_pipe_velocity_field(domain_size, u_max, flow_direction=0, diameter=None)
radius = int(round(diameter / 2)) radius = int(round(diameter / 2))
params = [np.arange(s) + 0.5 for s in domain_size] params = [np.arange(s) + 0.5 for s in domain_size]
grid: Tuple[np.array] = np.meshgrid(*params, indexing='ij') grid = np.meshgrid(*params, indexing='ij')
dist = 0 dist = 0
for i in range(len(domain_size)): for i in range(len(domain_size)):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment