Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Jan 10, 2025
1 parent 6a75dfa commit 6949bb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fake_bpy_module/transformer/data_type_refiner.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
_REGEX_DATA_TYPE_OPTION_OPTIONAL = re.compile(r"(^|^An |\()[oO]ptional(\s|\))")
_REGEX_DATA_TYPE_STARTS_WITH_COLLECTION = re.compile(r"^(list|tuple|dict)")
_REGEX_DATA_TYPE_MODIFIER_TYPES = re.compile(r"^(Sequence|Callable|list|dict|tuple|type)?\[(.+)\]$") # noqa: E501
_REGEX_DATA_TYPE_START_AND_END_WITH_PARENTHESES = re.compile(r"^\(([a-zA-Z0-9_.,` ]+)\)$") # noqa: E501
_REGEX_DATA_TYPE_START_AND_END_WITH_PARENTHESES = re.compile(r"^\((.+)\)$") # noqa: E501

Check failure on line 88 in src/fake_bpy_module/transformer/data_type_refiner.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff (RUF100)

src/fake_bpy_module/transformer/data_type_refiner.py:88:81: RUF100 Unused `noqa` directive (unused: `E501`)

REGEX_SPLIT_OR = re.compile(r" \| | or |,")

Expand Down

0 comments on commit 6949bb6

Please sign in to comment.