summaryrefslogtreecommitdiff
path: root/tools/splat/disassembler/disassembler.py
diff options
context:
space:
mode:
authoremilybrooks <emilybrooksemilybrooks@gmail.com>2024-01-06 15:51:16 -0700
committerGitHub <noreply@github.com>2024-01-06 15:51:16 -0700
commit093b8b7b9b20150a2eb6d2a8ab887f9387298fee (patch)
tree10573a1e986d07db373e9f92f770bccbb746f559 /tools/splat/disassembler/disassembler.py
parentebd97e9fd1cd8bb02a397ca8b0982bc0e2b076ae (diff)
Update splat to library version 0.21.0 (#130)
* build not matching for some reason * partial fix * builds properly now * remove pigment64 from readme
Diffstat (limited to 'tools/splat/disassembler/disassembler.py')
-rw-r--r--tools/splat/disassembler/disassembler.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/splat/disassembler/disassembler.py b/tools/splat/disassembler/disassembler.py
deleted file mode 100644
index e64aa26..0000000
--- a/tools/splat/disassembler/disassembler.py
+++ /dev/null
@@ -1,17 +0,0 @@
-from abc import ABC, abstractmethod
-from util.options import SplatOpts
-from typing import Set
-
-
-class Disassembler(ABC):
- @abstractmethod
- def configure(self, options: SplatOpts):
- raise NotImplementedError("configure")
-
- @abstractmethod
- def check_version(self, skip_version_check: bool, splat_version: str):
- raise NotImplementedError("check_version")
-
- @abstractmethod
- def known_types(self) -> Set[str]:
- raise NotImplementedError("known_types")