Skip to content

Commit

Permalink
Fix mypy errors
Browse files Browse the repository at this point in the history
Signed-off-by: Pablo Galindo <[email protected]>
  • Loading branch information
pablogsal committed Jan 21, 2025
1 parent cddb963 commit a74a66e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/pystack/_pystack.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ class CoreFileAnalyzer:
def missing_modules(self) -> List[str]: ...

class NativeReportingMode(enum.Enum):
ALL: int
OFF: int
PYTHON: int
ALL = 1
OFF = 2
PYTHON = 3

class StackMethod(enum.Enum):
ALL: int
ANONYMOUS_MAPS: int
AUTO: int
BSS: int
ELF_DATA: int
HEAP: int
SYMBOLS: int
DEBUG_OFFSETS: int
ALL = 1
ANONYMOUS_MAPS = 2
AUTO = 3
BSS = 4
ELF_DATA = 5
HEAP = 6
SYMBOLS = 7
DEBUG_OFFSETS = 8

class ProcessManager: ...

Expand Down

0 comments on commit a74a66e

Please sign in to comment.