@@ -86,19 +86,19 @@ def subvolume_get_default(self, filesystem_path):
8686
8787 def subvolume_set_default (self , filesystem_path , subvolume_id ):
8888 command = [self .__btrfs , "subvolume" , "set-default" , str (subvolume_id ), to_bytes (filesystem_path )]
89- result = self .__module .run_command (command , check_rc = True )
89+ self .__module .run_command (command , check_rc = True )
9090
9191 def subvolume_create (self , subvolume_path ):
9292 command = [self .__btrfs , "subvolume" , "create" , to_bytes (subvolume_path )]
93- result = self .__module .run_command (command , check_rc = True )
93+ self .__module .run_command (command , check_rc = True )
9494
9595 def subvolume_snapshot (self , snapshot_source , snapshot_destination ):
9696 command = [self .__btrfs , "subvolume" , "snapshot" , to_bytes (snapshot_source ), to_bytes (snapshot_destination )]
97- result = self .__module .run_command (command , check_rc = True )
97+ self .__module .run_command (command , check_rc = True )
9898
9999 def subvolume_delete (self , subvolume_path ):
100100 command = [self .__btrfs , "subvolume" , "delete" , to_bytes (subvolume_path )]
101- result = self .__module .run_command (command , check_rc = True )
101+ self .__module .run_command (command , check_rc = True )
102102
103103
104104class BtrfsInfoProvider :
0 commit comments