You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# ESMF SDK PY Aspect Model loader Code Conventions
1
+
# ESMF SDK PY Aspect Model Loader Code Conventions
2
2
3
-
The following document contains a compilation of conventions and guidelines to format, structure and write code for the ESMF SDK PY Aspect Model loader.
3
+
The following document contains a compilation of conventions and guidelines to format, structure and write code for the ESMF SDK PY Aspect Model Loader.
4
4
5
5
## General Conventions
6
6
Our code conventions are based on the [Google Python Style Guide](https://google.github.io/styleguide/pyguide.html) but
7
-
detailed and adjusted for the needs of the ESMF SDK py aspect model loader.
7
+
detailed and adjusted for the needs of the ESMF SDK py Aspect Model Loader.
Copy file name to clipboardExpand all lines: core/esmf-aspect-meta-model-python/esmf_aspect_meta_model_python/samm_aspect_meta_model/download_samm_release.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,14 +19,14 @@
19
19
20
20
21
21
defmain():
22
-
"""Downloads the release .JAR of the samm for the selected version and extracts the SAMM files"""
22
+
"""Downloads the release .jar of the samm for the selected version and extracts the SAMM files"""
23
23
download_jar(SAMM_VERSION_TO_DOWNLOAD)
24
24
extract_jar(SAMM_VERSION_TO_DOWNLOAD)
25
25
print("current path: ", pathlib.Path().resolve())
26
26
27
27
28
28
defdownload_jar(version):
29
-
"""Downloads the release .JAR of the samm for the selected version"""
29
+
"""Downloads the release .jar of the samm for the selected version"""
30
30
31
31
print(f"Start downloading SAMM Version {version}")
0 commit comments