diff options
| author | George Angelopoulos <l4than.d3vers@gmail.com> | 2013-04-18 15:01:31 +0300 |
|---|---|---|
| committer | George Angelopoulos <l4than.d3vers@gmail.com> | 2013-04-18 15:01:31 +0300 |
| commit | 4e3d061d5c8bde61d94715d3b05aede333912b66 (patch) | |
| tree | 4a954f2d3cb2788dace978e80d7ec0a459189fae /weatbag/tiles/e1.py | |
| parent | 9d8fa73a4fcec72f21c03de7adb77b7fa03a6c07 (diff) | |
PEP 8 police: Wrapped 80+ char lines in all tiles!
Diffstat (limited to 'weatbag/tiles/e1.py')
| -rw-r--r-- | weatbag/tiles/e1.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/weatbag/tiles/e1.py b/weatbag/tiles/e1.py index 486a98f..39f73e5 100644 --- a/weatbag/tiles/e1.py +++ b/weatbag/tiles/e1.py @@ -8,8 +8,9 @@ class Tile: def describe(self): print("The path crosses a small stream.") if self.contents['berries']: - print("There are some berries hanging from a tree. They look edible. " - "If you're hungry enough, anyway.") + print("There are some berries hanging from a tree. " + "They look edible. " + "If you're hungry enough, anyway.") def action(self, player, do): if (do[0] in words.take) and ('berries' in do): |
