Tidy code style

This commit is contained in:
Sam Oliver
2021-09-17 12:56:27 +02:00
parent e30c18853a
commit aad3b61d10
12 changed files with 205 additions and 204 deletions

View File

@@ -17,4 +17,3 @@ module ArrayClassification
end
end
end

View File

@@ -1,6 +1,6 @@
class Object
def save_to_file(filename)
File.open(filename, 'w+') { |f| f << Marshal.dump(self) }
File.open(filename, "w+") { |f| f << Marshal.dump(self) }
end
def self.load_from_file(filename)