Skip to content

Commit afca5bb

Browse files
committed
fix incorrect type annotation of get_x86_eflags
1 parent 2ad1e5a commit afca5bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qiling/debugger/qdb/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def get_cpsr(bits: int) -> (bool, bool, bool, bool):
131131
)
132132

133133

134-
def get_x86_eflags(bits: int) -> (bool, bool, bool, bool, bool, bool):
134+
def get_x86_eflags(bits: int) -> Dict[str, bool]:
135135
return {
136136
"CF" : bits & 0x0001 != 0, # CF, carry flag
137137
"PF" : bits & 0x0004 != 0, # PF, parity flag

0 commit comments

Comments
 (0)