Fix a few more style violations in the avr_isp code.

This commit is contained in:
daid 2015-10-28 15:51:06 +01:00
parent a4a0dfdf89
commit d5d88e2300
2 changed files with 4 additions and 4 deletions

View file

@ -45,13 +45,13 @@ class IspBase():
"""
self.sendISP([0xAC, 0x80, 0x00, 0x00])
def writeFlash(self, flashData):
def writeFlash(self, flash_data):
"""
Write the flash data, needs to be implemented in a subclass.
"""
raise IspError("Called undefined writeFlash")
def verifyFlash(self, flashData):
def verifyFlash(self, flash_data):
"""
Verify the flash data, needs to be implemented in a subclass.
"""