ctcache
ctcache copied to clipboard
Replace == with is; remove duplicate import
Fix the usage of ==
instead of is
, is
is more correct and Pythonic, and more consistent with the project as it is used in the other file for comparison against None.
remove duplicate import for the sys
module.