Skip to content

Commit be341e7

Browse files
fixed errors
1 parent 16f6344 commit be341e7

3 files changed

Lines changed: 20 additions & 23 deletions

File tree

plotsense/visual_suggestion/suggestions.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,7 @@ def _validate_keys(self):
8484
link = service_links.get(
8585
service, f"the {service.upper()} website")
8686
message = (
87-
f"Enter {
88-
service.upper()} API key (get it at {link}): ")
87+
f"Enter {service.upper()} API key (get it at {link}): ")
8988
self.api_keys[service] = builtins.input(
9089
message).strip()
9190
if not self.api_keys[service]:

pytest.ini

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,10 @@ addopts =
2626
--strict-config
2727
# Show warnings
2828
-W default
29-
# Coverage options (when --cov is used)
30-
--cov-report=term-missing:skip-covered
31-
--cov-report=html
32-
--cov-branch
3329
# Performance
3430
--durations=10
31+
# Note: Coverage options removed from default addopts
32+
# To run with coverage: pytest --cov=plotsense --cov-report=term-missing --cov-report=html --cov-branch
3533

3634
# Markers for organizing tests
3735
markers =

0 commit comments

Comments
 (0)