Skip to content

Commit

Permalink
pylint....
Browse files Browse the repository at this point in the history
  • Loading branch information
CindyvdVries committed Jul 2, 2024
1 parent 057be2a commit 070ab52
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
16 changes: 13 additions & 3 deletions decoimpact/crosscutting/delft3d_specific_data.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
interfaces_name = "mesh2d_interface_z"
bed_level_name = "mesh2d_flowelem_bl"
water_level_name = "mesh2d_s1"
# This file is part of D-EcoImpact
# Copyright (C) 2022-2024 Stichting Deltares
# This program is free software distributed under the
# GNU Affero General Public License version 3.0
# A copy of the GNU Affero General Public License can be found at
# https://github.com/Deltares/D-EcoImpact/blob/main/LICENSE.md
"""
Configuration file for hardcoded delft3d variable names
"""

INTERFACES_NAME = "mesh2d_interface_z"
BED_LEVEL_NAME = "mesh2d_flowelem_bl"
WATER_LEVEL_NAME = "mesh2d_s1"
1 change: 0 additions & 1 deletion tests/business/entities/rules/test_depth_average_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def test_no_validate_error_with_correct_rule():
"""Test a correct depth average rule validates without error"""

# Arrange
logger = Mock(ILogger)
rule = DepthAverageRule(
"test_rule_name",
["foo", "hello"],
Expand Down

0 comments on commit 070ab52

Please sign in to comment.