• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

andy-goellner / pco-python-sdk / 14284405228

05 Apr 2025 06:00PM UTC coverage: 92.701% (-1.7%) from 94.432%
14284405228

Pull #13

github

web-flow
Merge 220dc311c into e9345420a
Pull Request #13: patch: Bug bash, fixing random bugs

105 of 122 new or added lines in 20 files covered. (86.07%)

508 of 548 relevant lines covered (92.7%)

2.78 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

90.0
/src/planning_center_python/data/api_response/pco_response.py
1
import json
3✔
2
from typing import Mapping
3✔
3

4

5
class PCOResponse(object):
3✔
6
    def __init__(
3✔
7
        self,
8
        body: str,
9
        code: int,
10
        headers: Mapping[str, str],
11
    ) -> None:
12
        self.code = code
3✔
13
        self.headers = headers
3✔
14
        self.body = body
3✔
15
        self.data = json.loads(body)
3✔
16

17
    def is_successful(self) -> bool:
3✔
NEW
18
        return self.code < 299
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc