Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
rjfarmer committed Jan 26, 2024
1 parent 1d36e93 commit 7f3de2a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
fail_fast: true
repos:
- repo: https://github.com/psf/black
rev: 23.3.0
rev: 24.1.0
hooks:
- id: black
language_version: python3 # Should be a command that runs python3.6+
4 changes: 3 additions & 1 deletion gfort2py/module_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,9 @@ class expression:
rank: int = -1
_saved_value: t.Any = None
_value: t.Any = None
_resolved_value: t.Any = None # value may by a symbol_ref, so this is the value after resolving the reference
_resolved_value: t.Any = (
None # value may by a symbol_ref, so this is the value after resolving the reference
)
arglist: actual_arglist = None # PDT's?
charlen: int = -1
unary_op: str = ""
Expand Down

0 comments on commit 7f3de2a

Please sign in to comment.