Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw committed Oct 26, 2024
1 parent 460495a commit 4018363
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py-rattler/rattler/repo_data/package_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,13 @@ def validate_package_records(records: List[PackageRecord]) -> None:
```python
>>> from os import listdir
>>> from os.path import isfile, join
>>> from rattler import PrefixRecord, validate_package_records
>>> from rattler import PrefixRecord
>>> records = [
... PrefixRecord.from_path(join("../test-data/conda-meta/", f))
... for f in listdir("../test-data/conda-meta")
... if isfile(join("../test-data/conda-meta", f))
... ]
>>> validate_package_records(records)
>>> PrefixRecord.validate_package_records(records)
```
"""
return PyRecord.validate_package_records(records)
Expand Down

0 comments on commit 4018363

Please sign in to comment.