Skip to content

Commit

Permalink
Remove trailing whitespace in etc/lldb/crystal_formatters.py (#9482)
Browse files Browse the repository at this point in the history
  • Loading branch information
makenowjust committed Jun 15, 2020
1 parent 79f3022 commit 68f0f38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions etc/lldb/crystal_formatters.py
Expand Up @@ -22,10 +22,10 @@ def get_child_index(self, name):
return int(name.lstrip('[').rstrip(']'))
except:
return -1

def get_child_at_index(self,index):
if index >= self.size:
return None
return None
try:
elementType = self.buffer.type.GetPointeeType()
offset = elementType.size * index
Expand Down

0 comments on commit 68f0f38

Please sign in to comment.