We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 099f5a1 commit eddbce1Copy full SHA for eddbce1
1 file changed
src/frame.pyx
@@ -15,7 +15,7 @@ cdef str GetUniqueFrameId(int browserId, py_string frameId):
15
return str(browserId) +"#"+ frameId
16
17
cdef PyFrame GetPyFrameById(int browserId, py_string frameId):
18
- cdef object uniqueFrameId = GetUniqueFrameId(browserId, frameId)
+ cdef str uniqueFrameId = GetUniqueFrameId(browserId, frameId)
19
if uniqueFrameId in g_pyFrames:
20
return g_pyFrames[uniqueFrameId]
21
return None
0 commit comments