rgwfuncs 0.0.58__tar.gz → 0.0.59__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: rgwfuncs
3
- Version: 0.0.58
3
+ Version: 0.0.59
4
4
  Summary: A functional programming paradigm for mathematical modelling and data science
5
5
  Home-page: https://github.com/ryangerardwilson/rgwfunc
6
6
  Author: Ryan Gerard Wilson
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "rgwfuncs"
7
- version = "0.0.58"
7
+ version = "0.0.59"
8
8
  authors = [
9
9
  { name = "Ryan Gerard Wilson", email = "ryangerardwilson@gmail.com" },
10
10
  ]
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = rgwfuncs
3
- version = 0.0.58
3
+ version = 0.0.59
4
4
  author = Ryan Gerard Wilson
5
5
  author_email = ryangerardwilson@gmail.com
6
6
  description = A functional programming paradigm for mathematical modelling and data science
@@ -212,9 +212,7 @@ def update_rows(
212
212
 
213
213
  invalid_cols = [col for col in updates if col not in df.columns]
214
214
  if invalid_cols:
215
- raise ValueError(
216
- f"Columns {
217
- ', '.join(invalid_cols)} do not exist in the DataFrame.")
215
+ raise ValueError(f"Columns {', '.join(invalid_cols)} do not exist in the DataFrame.")
218
216
 
219
217
  new_df = df.copy()
220
218
  for col_name, new_value in updates.items():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: rgwfuncs
3
- Version: 0.0.58
3
+ Version: 0.0.59
4
4
  Summary: A functional programming paradigm for mathematical modelling and data science
5
5
  Home-page: https://github.com/ryangerardwilson/rgwfunc
6
6
  Author: Ryan Gerard Wilson
File without changes
File without changes