We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c51a2b8 commit 59a8360Copy full SHA for 59a8360
src/itzi/itzi.py
@@ -91,7 +91,7 @@ def initialize(self, conf_file):
91
msgr.fatal(
92
(
93
f"Itzi requires at least GRASS {self.grass_required_version}, "
94
- "version {grass_version} detected."
+ f"version {grass_version} detected."
95
)
96
97
msgr.debug("GRASS session set")
src/itzi/simulation.py
@@ -300,7 +300,7 @@ def __init__(
300
self.node_id_to_loc = {
301
n.id: (n.row, n.col) for n in self.nodes_list if n.object.is_coupled()
302
}
303
- # Grid spacing
+ # Grid spacing (for BMI)
304
self.spacing = (self.raster_domain.dy, self.raster_domain.dx)
305
306
def update(self):
0 commit comments