Skip to content

Commit

Permalink
fix: fix typo in #1417
Browse files Browse the repository at this point in the history
  • Loading branch information
0x79H committed Dec 14, 2023
1 parent 3724cee commit d1f43a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qiling/os/os.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __init__(self, ql: Qiling, resolvers: Mapping[Any, Resolver] = {}):
# for the standard streams which usually do not support certain operations,
# such as fileno(). here we use this to determine how we are going to use
# the environment standard streams
assert sts.stdin != None # IDAPython don't have corresponding fds
assert sys.stdin != None # IDAPython don't have corresponding fds
sys.stdin.fileno()
except (UnsupportedOperation, AssertionError):
# Qiling is used on an interactive shell or embedded python interpreter.
Expand Down

0 comments on commit d1f43a7

Please sign in to comment.