Coverage for src / repo_sync_kitty / forge / bitbucket.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.13.0, created at 2025-12-23 09:31 -0500

1"""Bitbucket API client.""" 

2 

3 

4class BitbucketClient: 

5 """Client for Bitbucket API.""" 

6 

7 def __init__(self, token: str | None = None) -> None: 

8 """Initialize with optional token.""" 

9 self.token = token