Skip to content

Commit 8ac8ce0

Browse files
committed
MAINT: Standardize styles with black
1 parent 15075b7 commit 8ac8ce0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+5343
-4034
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ repos:
88
exclude: ^(test/example_results/cheetah)
99
- id: check-yaml
1010
- id: check-added-large-files
11+
- repo: https://github.com/psf/black
12+
rev: '23.3.0'
13+
hooks:
14+
- id: black
1115
- repo: https://github.com/pycqa/isort
1216
rev: 5.12.0
1317
hooks:

asv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
from asv._version import version as __version__
44
from asv import plugin_manager # noqa F401 Needed to load the plugins
55

6-
__all__ = '__version__',
6+
__all__ = ("__version__",)

asv/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
from .main import main
44

5-
if __name__ == '__main__':
5+
if __name__ == "__main__":
66
main()

0 commit comments

Comments
 (0)