diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2022-03-14 12:47:56 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2022-03-14 12:47:56 -0400 |
| commit | 2da52de594c47ba5427806a98d70ebaf09216a33 (patch) | |
| tree | f9c74e5a49da7ce698c1bb574419a44306171406 /python | |
| parent | 4c88144acfbb58e29742e27949e5b02ef4c4108e (diff) | |
fix typo in remove_snapshot api
Diffstat (limited to 'python')
| -rw-r--r-- | python/database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/database.py b/python/database.py index b9b81058..84d5979b 100644 --- a/python/database.py +++ b/python/database.py @@ -279,7 +279,7 @@ class Database: def current_snapshot(self, value: Snapshot): core.BNSetDatabaseCurrentSnapshot(self.handle, value.id) - def remove_snapsot(self, id: int): + def remove_snapshot(self, id: int): """Remove a snapshot in the database by id""" core.BNRemoveDatabaseSnapshot(self.handle, id) |
