Skip to content

Commit c3a8574

Browse files
committed
Beautified Variable name
1 parent c5fad30 commit c3a8574

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/axes/_axes.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7230,8 +7230,8 @@ def specgram(self, x, NFFT=None, Fs=None, Fc=None, detrend=None,
72307230

72317231
if xextent is None:
72327232
# padding is needed for first and last segment:
7233-
pad_xextnt = (NFFT-noverlap) / Fs / 2
7234-
xextent = np.min(t) - pad_xextnt, np.max(t) + pad_xextnt
7233+
pad_xextent = (NFFT-noverlap) / Fs / 2
7234+
xextent = np.min(t) - pad_xextent, np.max(t) + pad_xextent
72357235
xmin, xmax = xextent
72367236
freqs += Fc
72377237
extent = xmin, xmax, freqs[0], freqs[-1]

0 commit comments

Comments
 (0)