summaryrefslogtreecommitdiff
path: root/python/fileaccessor.py
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2022-01-27 22:43:28 -0500
committerKyleMiles <krm504@nyu.edu>2022-01-28 00:24:06 -0500
commit6812c973c9fa9b4ad642ab81856c05f87bd6fcc4 (patch)
treedace4156d03148bcaf02df138ab4e0d93e61bc6f /python/fileaccessor.py
parent519c9db22367f2659d1a54599fab47e6313be06e (diff)
Format All Files
Diffstat (limited to 'python/fileaccessor.py')
-rw-r--r--python/fileaccessor.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/fileaccessor.py b/python/fileaccessor.py
index 85642bff..451b2d20 100644
--- a/python/fileaccessor.py
+++ b/python/fileaccessor.py
@@ -25,6 +25,7 @@ import ctypes
from . import _binaryninjacore as core
from .log import log_error
+
class FileAccessor:
def __init__(self):
self._cb = core.BNFileAccessor()
@@ -39,7 +40,7 @@ class FileAccessor:
def read(self, offset, length):
return NotImplemented
- def write(self, offset:int, data:bytes):
+ def write(self, offset: int, data: bytes):
return NotImplemented
def __len__(self):