Skip to content

Commit

Permalink
Fix pylint C0114 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
martinholmer committed Jan 4, 2025
1 parent dfb578c commit 068bc14
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""
Tax-Calculator setup.
"""

from setuptools import setup

with open("README.md") as f:
Expand Down
4 changes: 4 additions & 0 deletions taxcalc/parameters.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""
Tax-Calculator abstract base parameter class based on paramtools package.
"""

import os
import copy
from collections import defaultdict
Expand Down
4 changes: 4 additions & 0 deletions taxcalc/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""
The pytest configuration file.
"""

import os
import time
import glob
Expand Down
4 changes: 4 additions & 0 deletions taxcalc/tests/test_consumption.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
"""
Test Consumption class and its methods.
"""
# CODING-STYLE CHECKS:
# pycodestyle test_consumption.py
# pylint --disable=locally-disabled test_consumption.py

import numpy as np
import paramtools
Expand Down
4 changes: 4 additions & 0 deletions taxcalc/tests/test_data.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
"""
Test Data class and its methods.
"""
# CODING-STYLE CHECKS:
# pycodestyle test_data.py
# pylint --disable=locally-disabled test_data.py

import os
import tempfile
Expand Down
4 changes: 4 additions & 0 deletions taxcalc/tests/test_decorators.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
"""
Test decorators.
"""
# CODING-STYLE CHECKS:
# pycodestyle test_decorators.py
# pylint --disable=locally-disabled test_decorators.py

import os
import sys
Expand Down
4 changes: 4 additions & 0 deletions taxcalc/tests/test_growdiff.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
"""
Test GrowDiff class and its methods.
"""
# CODING-STYLE CHECKS:
# pycodestyle test_growdiff.py
# pylint --disable=locally-disabled test_growdiff.py

import os
import json
Expand Down
4 changes: 4 additions & 0 deletions taxcalc/tests/test_records.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
"""
Test Records class and its methods.
"""
# CODING-STYLE CHECKS:
# pycodestyle test_records.py
# pylint --disable=locally-disabled test_records.py

import os
import json
Expand Down

0 comments on commit 068bc14

Please sign in to comment.