Skip to content

Commit

Permalink
Update Python code for new clean signature (#194)
Browse files Browse the repository at this point in the history
The clean function now requires cmdclean and convert flags to be given.
  • Loading branch information
ctrueden committed Apr 3, 2023
1 parent 08a3f3a commit 6b3f7c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ with LastpassCSV('lastpass-export.csv') as importer:

with PasswordStore('~/.password-store') as exporter:
exporter.data = importer.data
exporter.clean()
exporter.clean(True, True)
for entry in exporter.data:
exporter.insert(entry)
```
Expand All @@ -752,7 +752,7 @@ with LastpassCSV('lastpass-export.csv') as importer:

with Keepass('keepass.kdbx') as exporter:
exporter.data = importer.data
exporter.clean()
exporter.clean(True, True)
for entry in exporter.data:
exporter.insert(entry)
```
Expand Down

0 comments on commit 6b3f7c0

Please sign in to comment.