Skip to content

Commit

Permalink
Fixed missing space in partition.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ericbsd committed Nov 13, 2024
1 parent cbb15de commit cf34d7f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/partition.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/local/bin/python

import os
import gi
gi.require_version('Gtk', '3.0')
Expand Down Expand Up @@ -612,7 +611,7 @@ def partition_selection_new(self, widget):
self.button3.set_sensitive(True)
else:
self.button3.set_sensitive(False)
elif len(self.partitions) >= 2and 'UEFI' in self.partitions[0] and 'ZFS' in self.partitions[1]:
elif len(self.partitions) >= 2 and 'UEFI' in self.partitions[0] and 'ZFS' in self.partitions[1]:
self.button3.set_sensitive(True)
else:
self.button3.set_sensitive(False)
Expand Down

0 comments on commit cf34d7f

Please sign in to comment.