Skip to content

Commit

Permalink
reformatting again
Browse files Browse the repository at this point in the history
  • Loading branch information
jlopezpena committed Nov 22, 2023
1 parent e46f93a commit 919dd9e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@

def find_vendored_packages(path):
"""Add all the packages in the `vendor` directory"""
return [root.replace("/", ".") for root, dirs, files in os.walk(path) if "__pycache__" not in root]
return [
root.replace("/", ".")
for root, dirs, files in os.walk(path)
if "__pycache__" not in root
]


vendored_packages = find_vendored_packages("omegaconf/vendor")
Expand Down

0 comments on commit 919dd9e

Please sign in to comment.