Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fakufaku committed May 27, 2024
1 parent f866eb8 commit b3917a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions pyroomacoustics/directivities/integration.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import numpy as np
from scipy.spatial import SphericalVoronoi

from pyroomacoustics.doa import fibonacci_spherical_sampling


Expand Down
8 changes: 4 additions & 4 deletions pyroomacoustics/directivities/tests/test_cardioid_energy.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
"""
"""

import numpy as np
import pytest

from pyroomacoustics.doa import cart2spher
from pyroomacoustics.directivities.analytic import (
CardioidFamily,
DirectivityPattern,
cardioid_func,
cardioid_energy,
cardioid_func,
)
from pyroomacoustics.directivities.integration import spherical_integral
from pyroomacoustics.directivities.direction import DirectionVector

from pyroomacoustics.directivities.integration import spherical_integral
from pyroomacoustics.doa import cart2spher

PARAMETERS = [(p, G) for p in [0.0, 0.25, 0.5, 0.75, 1.0] for G in [1.0, 0.5, 2.0]]

Expand Down

0 comments on commit b3917a0

Please sign in to comment.