quick_dump: Fix the indentation

Fix the spaces to use [the python standard] 4 soft spaces for tabe.
While here, add the proper vim tag so we don't do it again.

Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
This commit is contained in:
Ben Widawsky 2014-01-17 19:35:22 -08:00
parent a5d17d2b0e
commit 724340cf36
2 changed files with 70 additions and 67 deletions

View File

@ -6,6 +6,8 @@
# register types: # register types:
# '' - normal register # '' - normal register
# 'DPIO' - DPIO register # 'DPIO' - DPIO register
#
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
import argparse import argparse
import os import os

View File

@ -1,4 +1,5 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
import chipset import chipset
def read(reg): def read(reg):