Skip to content

Commit bb473f6

Browse files
committed
Run linter / formatter
1 parent fbc1509 commit bb473f6

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

advanced/debugging/segfault.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Simple code that creates a segfault using numpy. Used to learn
1+
"""Simple code that creates a segfault using numpy. Used to learn
22
debugging segfaults with GDB.
33
"""
44

advanced/debugging/wiener_filtering.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
""" Wiener filtering a noisy raccoon face: this module is buggy
2-
"""
1+
"""Wiener filtering a noisy raccoon face: this module is buggy"""
32

43
import numpy as np
54
import scipy as sp

advanced/interfacing_with_c/ctypes/cos_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Example of wrapping cos function from math.h using ctypes. """
1+
"""Example of wrapping cos function from math.h using ctypes."""
22

33
import ctypes
44

advanced/interfacing_with_c/ctypes_numpy/cos_doubles.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
""" Example of wrapping a C library function that accepts a C double array as
2-
input using the numpy.ctypeslib. """
1+
"""Example of wrapping a C library function that accepts a C double array as
2+
input using the numpy.ctypeslib."""
33

44
import numpy as np
55
import numpy.ctypeslib as npct

pyximages/numpy_fancy_indexing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""source code for figure
2-
numpy_fancy_indexing.(png/pdf) used in Sect. 1.3.1.7 Fancy indexing
2+
numpy_fancy_indexing.(png/pdf) used in Sect. 1.3.1.7 Fancy indexing
33
4-
Requirement: PyX>=0.14 (pip installable)
4+
Requirement: PyX>=0.14 (pip installable)
55
66
"""
77

pyximages/numpy_indexing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""source code for figure
2-
numpy_indexing.(png/pdf) used in Sect. 1.3.1.5 Indexing and slicing
2+
numpy_indexing.(png/pdf) used in Sect. 1.3.1.5 Indexing and slicing
33
4-
Requirement: PyX>=0.14 (pip installable)
4+
Requirement: PyX>=0.14 (pip installable)
55
66
"""
77

0 commit comments

Comments
 (0)