|
28 | 28 | # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
29 | 29 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 | 30 |
|
| 31 | +import argparse |
31 | 32 | import os |
32 | 33 | import sys |
33 | 34 | import time |
34 | | -import argparse |
35 | 35 |
|
36 | | -import evv4esm |
37 | 36 | import livvkit |
38 | 37 | from livvkit.util import options |
39 | 38 |
|
| 39 | +import evv4esm |
| 40 | + |
40 | 41 |
|
41 | 42 | def parse_args(args=None): |
42 | 43 | parser = argparse.ArgumentParser( |
@@ -110,27 +111,26 @@ def main(cl_args=None): |
110 | 111 | cl_args = sys.argv[1:] |
111 | 112 | args = parse_args(cl_args) |
112 | 113 |
|
113 | | - print("--------------------------------------------------------------------") |
114 | | - print(" ______ __ __ __ __ ") |
115 | | - print(" | ____| \ \ / / \ \ / / ") |
116 | | - print(" | |__ \ \ / / \ \ / / ") |
117 | | - print(" | __| \ \/ / \ \/ / ") |
118 | | - print(" | |____ \ / \ / ") |
119 | | - print(" |______| \/ \/ ") |
120 | | - print(" ") |
121 | | - print(" Extended Verification and Validation for Earth System Models ") |
122 | | - print("--------------------------------------------------------------------") |
| 114 | + print(r"--------------------------------------------------------------------") |
| 115 | + print(r" ______ __ __ __ __ ") |
| 116 | + print(r" | ____| \ \ / / \ \ / / ") |
| 117 | + print(r" | |__ \ \ / / \ \ / / ") |
| 118 | + print(r" | __| \ \/ / \ \/ / ") |
| 119 | + print(r" | |____ \ / \ / ") |
| 120 | + print(r" |______| \/ \/ ") |
| 121 | + print(r" ") |
| 122 | + print(r" Extended Verification and Validation for Earth System Models ") |
| 123 | + print(r"--------------------------------------------------------------------") |
123 | 124 | print("") |
124 | 125 | print(" Current run: " + livvkit.timestamp) |
125 | 126 | print(" User: " + livvkit.user) |
126 | 127 | print(" OS Type: " + livvkit.os_type) |
127 | 128 | print(" Machine: " + livvkit.machine) |
128 | 129 | print(" " + livvkit.comment) |
129 | 130 |
|
| 131 | + from livvkit import elements, scheduler |
130 | 132 | from livvkit.components import validation |
131 | | - from livvkit import scheduler |
132 | 133 | from livvkit.util import functions |
133 | | - from livvkit import elements |
134 | 134 |
|
135 | 135 | livvkit.pool_size = args.pool_size |
136 | 136 | if args.extensions: |
|
0 commit comments