Skip to content

Commit f193a40

Browse files
adamtheturtleclaude
andcommitted
Fix pylint spelling errors in VuMark implementation
Add 'svg' to spelling dictionary and fix 'pdf' to 'PDF' in comments to pass pylint spell checking. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
1 parent 139282e commit f193a40

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

spelling_private_dict.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ resjsonarr
100100
rfc
101101
rgb
102102
str
103+
svg
103104
timestamp
104105
todo
105106
travis

src/mock_vws/_flask_server/vws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ def generate_vumark_instance(target_id: str) -> Response:
681681
elif accept_header == "image/png":
682682
content = generate_png(instance_id=instance_id)
683683
content_type = "image/png"
684-
else: # application/pdf
684+
else: # PDF
685685
content = generate_pdf(instance_id=instance_id)
686686
content_type = "application/pdf"
687687

src/mock_vws/_requests_mock_server/mock_web_services_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ def generate_vumark_instance(
773773
elif accept_header == "image/png":
774774
content = generate_png(instance_id=instance_id)
775775
content_type = "image/png"
776-
else: # application/pdf
776+
else: # PDF
777777
content = generate_pdf(instance_id=instance_id)
778778
content_type = "application/pdf"
779779

0 commit comments

Comments
 (0)