Skip to content

Commit

Permalink
Fix: Build Error
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Nov 3, 2023
1 parent 6a1a1d6 commit ce41acd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fake_bpy_module/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -1369,7 +1369,7 @@ def _get_refined_data_type_fast(
# File: refiner_test.py
# Function: test_get_refined_data_type_for_various_patterns
# Pattern: `bpy.types.AnyType`
if re.match(r"^`bpy.types.AnyType`$", dtype_str):
if re.match(r"`bpy.types.AnyType`", dtype_str):
return ModifierDataType("typing.Any")

if re.match(r"^(any|Any type.)$", dtype_str):
Expand Down

0 comments on commit ce41acd

Please sign in to comment.