Skip to content

Commit f2e9ce0

Browse files
committed
Fix missing black as a dev dependency
1 parent 70e9496 commit f2e9ce0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Diff for: pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ requests = "2.25.1"
1515

1616
[tool.poetry.dev-dependencies]
1717
pre_commit = "^2.1.0"
18+
black = "^21.7b0"
1819

1920
[build-system]
2021
requires = ["poetry>=0.12", "setuptools>=30.3.0,<50"]

Diff for: supabase_py/lib/constants.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
from supabase_py import __version__
22

3-
DEFAULT_HEADERS = {
4-
'X-Client-Info': f'supabase-py/{__version__}'
5-
}
3+
DEFAULT_HEADERS = {"X-Client-Info": f"supabase-py/{__version__}"}

0 commit comments

Comments
 (0)