From 6812c973c9fa9b4ad642ab81856c05f87bd6fcc4 Mon Sep 17 00:00:00 2001 From: KyleMiles Date: Thu, 27 Jan 2022 22:43:28 -0500 Subject: Format All Files --- python/fileaccessor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'python/fileaccessor.py') 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): -- cgit v1.3.1