Skip to content

Commit 1037e0f

Browse files
committed
adjusted spacing for atm forware result pretty_print() function
1 parent 33c658b commit 1037e0f

5 files changed

Lines changed: 11 additions & 6 deletions

File tree

RELEASE_NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Version 1.26.1
2+
-------------------
3+
- updated `pretty_print()` function for ATM forward result
4+
5+
16
Version 1.26.0
27
-------------------
38
- ATM model changes

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "pyucalgarysrs"
7-
version = "1.26.0"
7+
version = "1.26.1"
88
description = "Tools for interacting with UCalgary Space Remote Sensing data"
99
readme = "README.md"
1010
homepage = "https://github.com/ucalgary-srs/pyUCalgarySRS"

pyucalgarysrs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"""
3434

3535
# versioning info
36-
__version__ = "1.26.0"
36+
__version__ = "1.26.1"
3737

3838
# documentation
3939
__pdoc__ = {"pyucalgarysrs": False}

pyucalgarysrs/models/atm/classes_forward.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -300,17 +300,17 @@ class ATMForwardResult:
300300
height_integrated_rayleighs_5577: Any
301301
height_integrated_rayleighs_6300: Any
302302
height_integrated_rayleighs_8446: Any
303-
height_integrated_rayleighs_smile_uvi_lbh: Any
304303
height_integrated_rayleighs_1304: Any
305304
height_integrated_rayleighs_1356: Any
305+
height_integrated_rayleighs_smile_uvi_lbh: Any
306306
altitudes: Any
307307
emission_4278: Any
308308
emission_5577: Any
309309
emission_6300: Any
310310
emission_8446: Any
311-
emission_smile_uvi_lbh: Any
312311
emission_1304: Any
313312
emission_1356: Any
313+
emission_smile_uvi_lbh: Any
314314
plasma_electron_density: Any
315315
plasma_o2plus_density: Any
316316
plasma_noplus_density: Any
@@ -356,4 +356,4 @@ def pretty_print(self):
356356
var_str = "%s ...])" % (var_value.__repr__()[0:60])
357357

358358
# print string for this var
359-
print(" %-37s: %s" % (var_name, var_str))
359+
print(" %-43s: %s" % (var_name, var_str))

tests/test_suite/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616

1717

1818
def test_version():
19-
assert __version__ == "1.26.0"
19+
assert __version__ == "1.26.1"

0 commit comments

Comments
 (0)