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.
- {rgwfuncs-0.0.58/src/rgwfuncs.egg-info → rgwfuncs-0.0.59}/PKG-INFO +1 -1
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/pyproject.toml +1 -1
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/setup.cfg +1 -1
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/src/rgwfuncs/df_lib.py +1 -3
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59/src/rgwfuncs.egg-info}/PKG-INFO +1 -1
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/LICENSE +0 -0
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/README.md +0 -0
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/src/rgwfuncs/__init__.py +0 -0
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/src/rgwfuncs/algebra_lib.py +0 -0
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/src/rgwfuncs/docs_lib.py +0 -0
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/src/rgwfuncs/interactive_shell_lib.py +0 -0
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/src/rgwfuncs/str_lib.py +0 -0
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/src/rgwfuncs.egg-info/SOURCES.txt +0 -0
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/src/rgwfuncs.egg-info/dependency_links.txt +0 -0
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/src/rgwfuncs.egg-info/entry_points.txt +0 -0
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/src/rgwfuncs.egg-info/requires.txt +0 -0
- {rgwfuncs-0.0.58 → rgwfuncs-0.0.59}/src/rgwfuncs.egg-info/top_level.txt +0 -0
@@ -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():
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|