diff options
| author | Bryan Bishop <kanzure@gmail.com> | 2013-09-12 01:09:34 -0500 | 
|---|---|---|
| committer | Bryan Bishop <kanzure@gmail.com> | 2013-09-12 01:09:34 -0500 | 
| commit | fff6a7154cf70512d82bf106687efff7111c6934 (patch) | |
| tree | b5d7f3f9962fb6469852d8d547e69288e1587503 /pokemontools/crystal.py | |
| parent | 510bb1c3d95ec7bf061255dce78b97d89e1fcdb8 (diff) | |
don't override the object type/variable
Diffstat (limited to 'pokemontools/crystal.py')
| -rw-r--r-- | pokemontools/crystal.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/pokemontools/crystal.py b/pokemontools/crystal.py index f4d2b00..b4d5185 100644 --- a/pokemontools/crystal.py +++ b/pokemontools/crystal.py @@ -7153,8 +7153,8 @@ class Label:          """          Generates a label name based on parents and self.object.          """ -        object = self.object -        name = object.make_label() +        obj = self.object +        name = obj.make_label()          return name  def find_labels_without_addresses(): | 
