Skip to content

Commit 5fa9c3b

Browse files
committed
lint
1 parent 6f5f88e commit 5fa9c3b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/pythonpackage.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
- name: Upgrade pip
3939
run: |
4040
python -m pip install --upgrade pip
41-
- name: Workaround for windows and python 3.7
42-
if: matrix.os == 'windows-latest' && matrix.python-version == 3.7
41+
- name: Workaround for windows and python 3.8
42+
if: matrix.os == 'windows-latest' && matrix.python-version == 3.8
4343
run: |
4444
pip install netCDF4<=1.5.8
4545
# There is no binary package of netCF4>=1.6.0 for windows and python 3.7

examples/directivities/plot_directivity_3D.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import matplotlib.pyplot as plt
22
import numpy as np
3+
34
from pyroomacoustics.directivities import DirectionVector, HyperCardioid
45

56
orientation = DirectionVector(azimuth=0, colatitude=45, degrees=True)

examples/directivities/simulation_with_measured_directivity.py

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"""
5151

5252
import matplotlib.pyplot as plt
53+
5354
import pyroomacoustics as pra
5455
from pyroomacoustics.directivities import (
5556
Cardioid,

0 commit comments

Comments
 (0)