Skip to content

Commit

Permalink
Maintain status quo for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKostka committed Dec 9, 2024
1 parent 869faf1 commit 00dcd42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wbstack.python.lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Checkout
uses: actions/[email protected]

- name: Set up Python 3.7
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
Expand Down
2 changes: 1 addition & 1 deletion sync/wikiman/wikiman.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class FixedIndentingDumper(yaml.Dumper):
def increase_indent(self, flow=False, indentless=False):
return super().increase_indent(flow, False)

default_branch = get_mediawiki_branch_from_version(mediawiki_version)
default_branch = get_mediawiki_branch_from_version(mediawiki_version) # pylint: disable-msg=C0103
remove_from_all = codebases.get('removeFromAll', [])
output: List[Dict] = [make_artifact_entry({
'name': 'mediawiki',
Expand Down

0 comments on commit 00dcd42

Please sign in to comment.