linting continues

This commit is contained in:
sneakers-the-rat 2024-07-29 16:30:53 -07:00
parent 73ae5be91c
commit 2f0af1ef3c
Signed by untrusted user who does not match committer: jonny
GPG key ID: 6DCB96EF1E4D232D

View file

@ -236,5 +236,5 @@ class Adapter(BaseModel):
get_type = [get_type]
for item in self.walk(input):
if any([type(item) == atype for atype in get_type]):
if any([type(item) is atype for atype in get_type]):
yield item