Skip to content

Commit

Permalink
Remove type hints for now
Browse files Browse the repository at this point in the history
  • Loading branch information
JCGoran committed Jul 26, 2024
1 parent 3e552fd commit 4654790
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions test/usecases/solve/test_array.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
from typing import Optional

import numpy as np
from neuron import h, gui
from neuron.units import ms


def simulate(method: str, rtol: float, dt: Optional[float] = None):
def simulate(method, rtol, dt=None):
nseg = 1

s = h.Section()
Expand Down
4 changes: 1 addition & 3 deletions test/usecases/solve/test_scalar.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
from typing import Optional

import numpy as np
from neuron import h, gui
from neuron.units import ms


def simulate(method: str, rtol: float, dt: Optional[float] = None):
def simulate(method, rtol, dt=None):
nseg = 1

s = h.Section()
Expand Down

0 comments on commit 4654790

Please sign in to comment.