From 2da52de594c47ba5427806a98d70ebaf09216a33 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Mon, 14 Mar 2022 12:47:56 -0400 Subject: fix typo in remove_snapshot api --- python/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') 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) -- cgit v1.3.1