Skip to content

Commit

Permalink
precommit
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo committed Mar 15, 2024
1 parent b71293a commit fa5e5d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion PySDM/formulae.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ def __init__( # pylint: disable=too-many-locals
self.air_dynamic_viscosity = air_dynamic_viscosity

self._components = tuple(
i for i in dir(self) if not i.startswith("__") and i not in ("flatten", "get_constant")
i
for i in dir(self)
if not i.startswith("__") and i not in ("flatten", "get_constant")
)

constants_defaults = {
Expand Down
1 change: 0 additions & 1 deletion tests/unit_tests/test_formulae.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,3 @@ def test_get_constant():

# assert
assert sut.get_constant("rho_w") == rho_w

0 comments on commit fa5e5d8

Please sign in to comment.