mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
fix bug
This commit is contained in:
parent
26a9f99e80
commit
02005254f5
1 changed files with 1 additions and 1 deletions
|
|
@ -702,7 +702,7 @@ class EPCDataProcessor:
|
|||
self.data = self.data[self.data["PROPERTY_TYPE"] != IGNORED_PROPERTY_TYPES]
|
||||
|
||||
# We remove EPCs where the tenure is unknown, but is usually an indicator of a new build
|
||||
self.data = self.data[self.data["TENURE"] != IGNORED_TENURES]
|
||||
self.data = self.data[~self.data["TENURE"].isin(IGNORED_TENURES)]
|
||||
|
||||
def clean_multi_glaze_proportion(self, ignore_step: bool = False) -> None:
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue