Skip to content

Commit 10b40e8

Browse files
committed
Adjust for black
1 parent 90450c6 commit 10b40e8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

atlassian/confluence/cloud/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def blog_post_exists(self, space_key, title, **kwargs):
8787
"""Check if blog post exists."""
8888
result = self.get_blog_post_by_title(space_key, title, **kwargs)
8989
return len(result.get("results", [])) > 0
90-
90+
9191
def page_exists(self, space_key, title, **kwargs):
9292
"""Check if page exists in Confluence Cloud."""
9393
result = self.get_page_by_title(space_key, title, **kwargs)

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ commands = pylint {[base]linting_targets}
3535

3636
[testenv:black]
3737
basepython = python3
38-
target-version = [ "py310" ]
38+
target-version = [ "py311" ]
3939
skip_install = true
4040
deps = black
4141
commands = black --check --diff {[base]linting_targets} --exclude __pycache__
4242

4343
[testenv:black_fmt]
4444
basepython = python3
45-
target-version = ["py310"]
45+
target-version = ["py311"]
4646
skip_install = true
4747
deps = black
4848
commands = black {[base]linting_targets} --exclude __pycache__

0 commit comments

Comments
 (0)