Skip to content

Commit

Permalink
format bsync.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JieXiong9119 committed Sep 6, 2023
1 parent 7e58f2d commit f1cd0b6
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions bsyncpy/bsync.py
Original file line number Diff line number Diff line change
Expand Up @@ -3901,6 +3901,7 @@ class Manufacturer(BSElement):

element_type = "xs:string"


# EquipmentID
class EquipmentID(BSElement):
"""Identifier for the equipment."""
Expand Down Expand Up @@ -4671,12 +4672,7 @@ class CondenserType(BSElement):
"""condenser associated with the cooling plant. The usage of this element is not recommended except for Audit Template use cases. User is recommended to use CondenserPlant instead."""

element_type = "xs:string"
element_enumerations = [
"Air Cooled",
"Water Cooled",
"Other",
"Unknown"
]
element_enumerations = ["Air Cooled", "Water Cooled", "Other", "Unknown"]


# CondenserWaterTemperature
Expand Down Expand Up @@ -14043,12 +14039,14 @@ class LinkedSpaceID(BSElement):
# LinkedAuditCycle.IndexYearOfAuditCycle
class IndexYearOfAuditCycle(BSElement):
"""Index number of the year when the audit is conducted from the start of the audit cycle. 1 corresponds to auc:AuditCycleStartYear."""

element_type = "xs:integer"


# LinkedAuditCycles.LinkedAuditCycle
class LinkedAuditCycle(BSElement):
"""ID number of the associated Audit Cycle for the report"""

pass


Expand All @@ -14063,6 +14061,7 @@ class LinkedAuditCycle(BSElement):
# LinkedAuditCycles
class LinkedAuditCycles(BSElement):
"""ID numbers of the associated zones."""

pass


Expand Down Expand Up @@ -16840,7 +16839,7 @@ class PrincipalLightingSystemType(BSElement):
"Photoluminescent",
"Self Luminous",
"Other",
"Unknown"
"Unknown",
]


Expand Down Expand Up @@ -17498,7 +17497,7 @@ class DetailedOnsiteAudit(BSElement):
"Deep Energy Retrofit Audit",
"Preliminary Assessment (PA)",
"Investment Grade Audit (IGA)",
"Retrocommissioning Audit"
"Retrocommissioning Audit",
]


Expand Down

0 comments on commit f1cd0b6

Please sign in to comment.