Skip to content

Commit 16c9e08

Browse files
author
weilixu
committed
update a few specs
1 parent 5c0766d commit 16c9e08

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.Rapp.history

Whitespace-only changes.

BuildSimHubAPI/helpers/simulationJob.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def __init__(self, userKey, mk):
99
self._userKey = userKey
1010
self._modelKey = mk
1111
self._trackToken = ""
12-
self._trackStatus = "No simulation is running or completed in this Job - please start simulation using createModel method."
12+
self._trackStatus = "No simulation is running or completed in this Job - please start simulation using create_run_model method."
1313

1414
@property
1515
def trackStatus(self):

BuildSimHubAPI/helpers/simulationType.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def agent(self):
1818
def set_regular(self):
1919
self._type = "regular"
2020

21-
def increaseAgents(self):
21+
def increase_agents(self):
2222
if(self._agent == 1):
2323
self._agent = 1
2424
return self._agent
@@ -28,6 +28,6 @@ def increaseAgents(self):
2828
else:
2929
return self._agent
3030

31-
def resetAgent(self):
31+
def reset_agent(self):
3232
self._agent = 1
3333
return self._agent

test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,5 @@
2424
'Site and Source Energy', 'Energy Per Total Building Area', 'Net Site Energy')
2525

2626
print(value_dict['value'] + " " + value_dict['unit'])
27-
2827
else:
2928
print(response)

0 commit comments

Comments
 (0)