CRLF -> LF

This commit is contained in:
Alex Dima 2022-02-04 14:02:37 +01:00
parent d7ac67dbf8
commit aa75ddccbb
No known key found for this signature in database
GPG key ID: 39563C1504FDD0C9
42 changed files with 41762 additions and 41762 deletions

View file

@ -1,13 +1,13 @@
import banana
class Monkey:
# Bananas the monkey can eat.
capacity = 10
def eat(self, n):
"""Make the monkey eat n bananas!"""
self.capacity -= n * banana.size
def feeding_frenzy(self):
self.eat(9.25)
return "Yum yum"
import banana
class Monkey:
# Bananas the monkey can eat.
capacity = 10
def eat(self, n):
"""Make the monkey eat n bananas!"""
self.capacity -= n * banana.size
def feeding_frenzy(self):
self.eat(9.25)
return "Yum yum"