LeamHall / job_seeker

Tools to track job applications and contacts
Other
1 stars 1 forks source link

Fix pylint issues #13

Open LeamHall opened 6 months ago

LeamHall commented 6 months ago

C0103 Constant name "datadir" doesn't conform to UPPER_CASE naming style (invalid-name) C0103 Constant name "have_enough" doesn't conform to UPPER_CASE naming style (invalid-name) C0103 Constant name "job_file" doesn't conform to UPPER_CASE naming style (invalid-name) C0103 Constant name "months" doesn't conform to UPPER_CASE naming style (invalid-name) C0103 Constant name "poc_file" doesn't conform to UPPER_CASE naming style (invalid-name) C0114 Missing module docstring (missing-module-docstring) C0115 Missing class docstring (missing-class-docstring) C0116 Missing function or method docstring (missing-function-docstring) C0301 Line too long (123/100) (line-too-long) C0301 Line too long (156/100) (line-too-long) C2801 Unnecessarily calls dunder method str. Use str built-in function. (unnecessary-dunder-call) R0902 Too many instance attributes (9/7) (too-many-instance-attributes) R1732 Consider using 'with' for resource-allocating operations (consider-using-with) W0102 Dangerous default value {} as argument (dangerous-default-value) W0511 TODO W0621 Redefining name 'result' from outer scope (line 199) (redefined-outer-name) W0621 Redefining name 'results' from outer scope (line 198) (redefined-outer-name) W0621 Redefining name 'savings' from outer scope (line 33) (redefined-outer-name) W0702 No exception type(s) specified (bare-except) W1514 Using open without explicitly specifying an encoding (unspecified-encoding)