Skip to content

Commit aea234c

Browse files
authored
Update metadata.py
1 parent d80098a commit aea234c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/ts_utils/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ def update_metadata(distribution: str, **new_values: object) -> dict[str, object
374374
new_key = key.replace("_", "-")
375375
data[new_key] = data.pop(key)
376376
with path.open("w", encoding="UTF-8") as f:
377-
tomlkit.dump(data, f) # pyright: ignore[reportUnknownMemberType] # tomlkit.dump has partially unknown Mapping type
377+
tomlkit.dump(data, f)
378378
return data
379379

380380

0 commit comments

Comments
 (0)