Removed that unnecessary stupid shit.

This commit is contained in:
The Wobbler 2024-11-30 22:10:41 +01:00
parent 917d59a139
commit eb9c22967f

View file

@ -92,7 +92,7 @@ class File:
del self.app.open_files[self.path]
def save(self):
oz_string = self.app.open_files[self.path].bit_editor.input.toPlainText()
oz_string = self.bit_editor.input.toPlainText()
data = self.app.utils.oz_string_to_bstring(oz_string)
file = open(self.path, "wb")