mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-10 00:34:29 +00:00
linting continues
This commit is contained in:
parent
73ae5be91c
commit
2f0af1ef3c
1 changed files with 1 additions and 1 deletions
|
@ -236,5 +236,5 @@ class Adapter(BaseModel):
|
||||||
get_type = [get_type]
|
get_type = [get_type]
|
||||||
|
|
||||||
for item in self.walk(input):
|
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
|
yield item
|
||||||
|
|
Loading…
Reference in a new issue