Skip to content

Commit 49b8e2e

Browse files
committed
matplotlib # type: ignore[import]
1 parent b318403 commit 49b8e2e

10 files changed

Lines changed: 10 additions & 10 deletions

spynnaker_integration_tests/test_connectors/test_array_connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import matplotlib.pyplot as plt
15+
import matplotlib.pyplot as plt # type: ignore[import]
1616
import numpy
1717
from pyNN.utility.plotting import Figure, Panel
1818
import pyNN.spiNNaker as p

spynnaker_integration_tests/test_connectors/test_distance_dependent_weights_and_delays.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from spinnaker_testbase import BaseTestCase
1818
from pyNN.utility.plotting import Figure, Panel
1919
from pyNN.random import NumpyRNG
20-
import matplotlib.pyplot as plt
20+
import matplotlib.pyplot as plt # type: ignore[import]
2121

2222

2323
def do_run(plot):

spynnaker_integration_tests/test_connectors/test_small_world_connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from spinnaker_testbase import BaseTestCase
1717
from pyNN.utility.plotting import Figure, Panel
1818
from pyNN.random import NumpyRNG
19-
import matplotlib.pyplot as plt
19+
import matplotlib.pyplot as plt # type: ignore[import]
2020
from spynnaker.pyNN.utilities import neo_convertor
2121

2222

spynnaker_integration_tests/test_local_only/test_single_spike_kernel_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import numpy
1616
import pyNN.spiNNaker as sim
1717
from pyNN.space import Grid2D
18-
import matplotlib.pyplot as plt
18+
import matplotlib.pyplot as plt # type: ignore[import]
1919
from spinnaker_testbase import BaseTestCase
2020

2121

spynnaker_integration_tests/test_local_only/test_single_spike_kernel_response_delayed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import numpy
1616
import pyNN.spiNNaker as sim
1717
from pyNN.space import Grid2D
18-
import matplotlib.pyplot as plt
18+
import matplotlib.pyplot as plt # type: ignore[import]
1919
from spinnaker_testbase import BaseTestCase
2020

2121

spynnaker_integration_tests/test_param_vertex/test_synfire_200n_100pc_with_delays_all_recording.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"""
1818
Synfirechain-like example
1919
"""
20-
import matplotlib.pyplot as plt
20+
import matplotlib.pyplot as plt # type: ignore[import]
2121
import numpy
2222
from pyNN.utility.plotting import Figure
2323
import spynnaker.spike_checker as spike_checker

spynnaker_integration_tests/test_param_vertex/test_synfire_20n_20pc_delays_delay_extensions_all_recording.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"""
1818
Synfirechain-like example
1919
"""
20-
import matplotlib.pyplot as plt
20+
import matplotlib.pyplot as plt # type: ignore[import]
2121
import numpy
2222
from pyNN.utility.plotting import Figure
2323
import spynnaker.spike_checker as spike_checker

spynnaker_integration_tests/test_param_vertex/test_synfire_20n_20pc_delays_no_delay_extension_all_recording.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"""
1818
Synfirechain-like example
1919
"""
20-
import matplotlib.pyplot as plt
20+
import matplotlib.pyplot as plt # type: ignore[import]
2121
import numpy
2222
from pyNN.utility.plotting import Figure
2323
import spynnaker.spike_checker as spike_checker

spynnaker_integration_tests/test_param_vertex/test_synfire_20n_20pc_no_delays_all_recording.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
16-
import matplotlib.pyplot as plt
16+
import matplotlib.pyplot as plt # type: ignore[import]
1717
import numpy
1818
from pyNN.utility.plotting import Figure
1919
import spynnaker.spike_checker as spike_checker

spynnaker_integration_tests/test_various/test_from_file_connector_large.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import os
1616
import numpy
1717
import random
18-
import matplotlib.pyplot as plt
18+
import matplotlib.pyplot as plt # type: ignore[import]
1919
from pyNN.utility.plotting import Figure, Panel
2020
import pyNN.spiNNaker as p
2121
from spynnaker.pyNN.utilities import neo_convertor

0 commit comments

Comments
 (0)