Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fakufaku committed Oct 28, 2024
1 parent 6f5f88e commit 5fa9c3b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Workaround for windows and python 3.7
if: matrix.os == 'windows-latest' && matrix.python-version == 3.7
- name: Workaround for windows and python 3.8
if: matrix.os == 'windows-latest' && matrix.python-version == 3.8
run: |
pip install netCDF4<=1.5.8
# There is no binary package of netCF4>=1.6.0 for windows and python 3.7
Expand Down
1 change: 1 addition & 0 deletions examples/directivities/plot_directivity_3D.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import matplotlib.pyplot as plt
import numpy as np

from pyroomacoustics.directivities import DirectionVector, HyperCardioid

orientation = DirectionVector(azimuth=0, colatitude=45, degrees=True)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"""

import matplotlib.pyplot as plt

import pyroomacoustics as pra
from pyroomacoustics.directivities import (
Cardioid,
Expand Down

0 comments on commit 5fa9c3b

Please sign in to comment.