Skip to content

Commit

Permalink
build(deps-dev): bump ruff from 0.0.285 to 0.0.286 (#635)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump ruff from 0.0.285 to 0.0.286

Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.285 to 0.0.286.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md)
- [Commits](astral-sh/ruff@v0.0.285...v0.0.286)

---
updated-dependencies:
- dependency-name: ruff
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix ruff errors

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joey Vagedes <[email protected]>
  • Loading branch information
dependabot[bot] and Javagedes authored Aug 28, 2023
1 parent 2d2521a commit 1c397b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion edk2toolext/environment/conf_mgmt.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def populate_conf_dir(self, conf_folder_path: str, override_conf: bool, conf_tem
templatefiles = [os.path.join("Conf", os.path.splitext(f)[0] + ".template") for f in files]

# loop thru each Conf file needed
for x in range(0, len(outfiles)):
for x in range(len(outfiles)):
template_file_path = None

# find template file given multiple root locations
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ issues = "https://github.com/tianocore/edk2-pytool-extensions/issues"
[project.optional-dependencies]
dev = [
"edk2-pytool-extensions[openssl]",
"ruff == 0.0.285",
"ruff == 0.0.286",
"pytest == 7.4.0",
"coverage == 7.3.0",
"robotframework == 6.1.1",
Expand Down

0 comments on commit 1c397b5

Please sign in to comment.