We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 04d0a49 + 7c36cab commit e1a695aCopy full SHA for e1a695a
crytic_compile/platform/brownie.py
@@ -98,8 +98,10 @@ def is_supported(target: str, **kwargs: str) -> bool:
98
return False
99
# < 1.1.0: brownie-config.json
100
# >= 1.1.0: brownie-config.yaml
101
- return os.path.isfile(os.path.join(target, "brownie-config.json")) or os.path.isfile(
102
- os.path.join(target, "brownie-config.yaml")
+ return (
+ os.path.isfile(os.path.join(target, "brownie-config.json"))
103
+ or os.path.isfile(os.path.join(target, "brownie-config.yaml"))
104
+ or os.path.isfile(os.path.join(target, "brownie-config.yml"))
105
)
106
107
def is_dependency(self, _path: str) -> bool:
0 commit comments