Skip to content

Commit

Permalink
Bump black from 22.12.0 to 23.1.0 (#49)
Browse files Browse the repository at this point in the history
* Bump black from 22.12.0 to 23.1.0

Bumps [black](https://github.com/psf/black) from 22.12.0 to 23.1.0.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@22.12.0...23.1.0)

---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-major
...

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

* Bump black from 22.12.0 to 23.1.0

Bumps [black](https://github.com/psf/black) from 22.12.0 to 23.1.0.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@22.12.0...23.1.0)

---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-major
...

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

* fix formatting

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mike Hunhoff <[email protected]>
  • Loading branch information
dependabot[bot] and mike-hunhoff authored Feb 28, 2023
1 parent 9ffc48b commit e653efd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dncil/cil/opcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -2117,7 +2117,7 @@ def __init__(self):
self.one_byte_op_codes: List[OpCode] = [OpCodes.UNKNOWN1] * 0x100
self.two_byte_op_codes: List[OpCode] = [OpCodes.UNKNOWN2] * 0x100

for (_, opcode) in inspect.getmembers(OpCodes, lambda o: isinstance(o, OpCode)):
for _, opcode in inspect.getmembers(OpCodes, lambda o: isinstance(o, OpCode)):
if opcode.value >> 8 == 0:
self.one_byte_op_codes[opcode.value] = opcode
elif opcode.value >> 8 == 0xFE:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"pytest-instafail==0.4.2",
"pytest-cov==4.0.0",
"pycodestyle==2.10.0",
"black==22.12.0",
"black==23.1.0",
"isort==5.11.4",
"mypy==1.0.1",
"dnfile==0.13.0",
Expand Down

0 comments on commit e653efd

Please sign in to comment.