@@ -25,7 +25,7 @@ def test_pitzer_B_gamma_scalar(self):
2525 self .assertIsInstance (result , float )
2626
2727 def test_pitzer_C_gamma_scalar (self ):
28- """Test Pitzer C^γ with scalar input"""
28+ """Test Pitzer C^γ with scalar input. """
2929 result = pitzer_C_gamma (C_phi = 0.00127 )
3030 self .assertIsInstance (result , float )
3131 self .assertAlmostEqual (result , 1.5 * 0.00127 , places = 6 )
@@ -53,7 +53,7 @@ def test_pitzer_parameters_dict(self):
5353 self .assertIn ("KCl" , PITZER_PARAMETERS )
5454
5555 def test_pitzer_activity_coefficient_with_parameters (self ):
56- """Test activity coefficient using common electrolyte parameters"""
56+ """Test activity coefficient using common electrolyte parameters. """
5757 beta0 , beta1 , C_phi = PITZER_PARAMETERS ["NaCl" ]
5858 gamma = pitzer_activity_coefficient (m = 1.0 , z_plus = 1 , z_minus = 1 , nu_plus = 1 , nu_minus = 1 ,
5959 beta0 = beta0 , beta1 = beta1 , C_phi = C_phi )
@@ -67,7 +67,7 @@ def test_type_annotations_exist(self):
6767 self .assertIsNotNone (MolalityMolKg )
6868
6969 def test_normalize_molality_various_units (self ):
70- """Test normalize_molality with various unit inputs"""
70+ """Test normalize_molality with various unit inputs. """
7171 test_cases = [
7272 ("1 mol/kg" , 1.0 ),
7373 ("1 m" , 1.0 ),
0 commit comments