Skip to content

Commit 44786ef

Browse files
chore(deps): update black (23.1.0) and commitizen (2.40.0) (#2479)
Update the dependency versions: black: 23.1.0 commitizen: 2.40.0 They needed to be updated together as just updating `black` caused a dependency conflict. Updated files by running `black` and committing the changes.
1 parent 1992790 commit 44786ef

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

gitlab/exceptions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ def __init__(
99
response_code: Optional[int] = None,
1010
response_body: Optional[bytes] = None,
1111
) -> None:
12-
1312
Exception.__init__(self, error_message)
1413
# Http status code
1514
self.response_code = response_code

requirements-lint.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-r requirements.txt
22
argcomplete==2.0.0
3-
black==22.10.0
4-
commitizen==2.35.0
3+
black==23.1.0
4+
commitizen==2.40.0
55
flake8==5.0.4
66
isort==5.10.1
77
mypy==0.981

tests/functional/conftest.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ def reset_gitlab(gl: gitlab.Gitlab) -> None:
9696
helpers.safe_delete(project)
9797

9898
for group in gl.groups.list():
99-
10099
# skip deletion of a descendant group to prevent scenarios where parent group
101100
# gets deleted leaving a dangling descendant whose deletion will throw 404s.
102101
if group.parent_id:
@@ -243,7 +242,6 @@ def gitlab_token(
243242
docker_services,
244243
fixture_dir: pathlib.Path,
245244
) -> str:
246-
247245
start_time = time.perf_counter()
248246
logging.info("Waiting for GitLab container to become ready.")
249247
docker_services.wait_until_responsive(

tests/unit/objects/test_statistics.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
@pytest.fixture
2424
def resp_application_statistics():
25-
2625
with responses.RequestsMock() as rsps:
2726
rsps.add(
2827
method=responses.GET,

0 commit comments

Comments
 (0)