Skip to content

Commit

Permalink
Fix W0640
Browse files Browse the repository at this point in the history
  • Loading branch information
mayankpatibandla committed Mar 5, 2024
1 parent 11b23cd commit cce0199
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
# E1133: Not an iterable
# W0107: Unnecessary pass statement
# W3101: Missing timeout
# W0640: Cell variable from loop
# E0401: Unable to import
# W0212: Access to a protected member
# W0101: Unreachable code
Expand Down Expand Up @@ -85,6 +84,6 @@ max-line-length = 120
disable = C0114, C0115, C0116, R0903, C0415, R1705, R0913, W1203, R1729, E1120, E1123, C0209, R1710, W0621, C0121,
W0614, W0401, W1202, C0117, W0718, R0205, R0402, R0914, R1725, R1735, C0411, W0237, W0702, W0223, W0613,
W0108, R0912, R0911, W0511, E1136, R0902, W0611, C0412, C0103, C0301, R1732, R0915, W1514, R1718, W1510,
E0602, W1309, C0325, E1101, R1714, R0916, W0719, R1734, E1133, W1201, W0107, W3101, W0640,
E0602, W1309, C0325, E1101, R1714, R0916, W0719, R1734, E1133, W1201, W0107, W3101,
E0401, W0212, R0904, W0101,
C0302, E0110, W0603, R0401, C0303
2 changes: 1 addition & 1 deletion pros/cli/conductor.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,8 @@ def info_project(project: c.Project, ls_upgrades):
report = ProjectReport(project)
_conductor = c.Conductor()
if ls_upgrades:
import semantic_version as semver
for template in report.project['templates']:
import semantic_version as semver
templates = _conductor.resolve_templates(c.BaseTemplate.create_query(name=template["name"],
version=f'>{template["version"]}',
target=project.target))
Expand Down

0 comments on commit cce0199

Please sign in to comment.