Skip to content

Commit 7c08008

Browse files
committed
Switch from Simvue to Run
1 parent 3dc2942 commit 7c08008

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/SU2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44
import time
55

6-
from simvue import Simvue
6+
from simvue import Run
77

88
if __name__ == "__main__":
99
# Name of history file to collect metrics from
@@ -35,7 +35,7 @@
3535
if line.startswith(attr):
3636
metadata[attr] = line.split('%s= ' % attr)[1].strip()
3737

38-
run = Simvue()
38+
run = Run()
3939
run.init(metadata=metadata, tags=['SU2'],
4040
description='SU2 tutorial https://su2code.github.io/tutorials/Inviscid_ONERAM6/')
4141

examples/logging-to-simvue.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import logging
2-
from simvue import Simvue, Handler
2+
from simvue import Run, Handler
33

44
if __name__ == "__main__":
5-
run = Simvue()
5+
run = Run()
66

77
run.init(tags=['logging'],
88
description='Logging test')

0 commit comments

Comments
 (0)