Skip to content

Commit

Permalink
fix(rootfinding): Update based on name change in ladybug core
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey authored and Chris Mackey committed Mar 19, 2020
1 parent 59362b7 commit 6204e16
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ladybug_comfort/pmv.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"""Utility functions for calculating PMV."""
from __future__ import division

from ladybug.rootfind import secant
from ladybug.rootfind import bisect
from ladybug.rootfinding import secant
from ladybug.rootfinding import bisect

import math

Expand Down
4 changes: 2 additions & 2 deletions ladybug_comfort/utci.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"""Utility functions for calculating UTCI."""
from __future__ import division

from ladybug.rootfind import secant
from ladybug.rootfind import bisect
from ladybug.rootfinding import secant
from ladybug.rootfinding import bisect

import math

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lbt-ladybug>=0.7.0
lbt-ladybug>=0.19.0

0 comments on commit 6204e16

Please sign in to comment.