Skip to content

Commit de91d26

Browse files
committed
chores: Fix linter errors
1 parent e1d480e commit de91d26

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

supertokens_python/supertokens.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,10 @@ def make_recipe(recipe: Callable[[AppInfo], RecipeModule]) -> RecipeModule:
199199
self.recipe_modules: List[RecipeModule] = list(map(make_recipe, recipe_list))
200200

201201
if callable(DEFAULT_MULTITENANCY_RECIPE) and not multitenancy_found[0]:
202-
self.recipe_modules.append(DEFAULT_MULTITENANCY_RECIPE(self.app_info))
202+
recipe = DEFAULT_MULTITENANCY_RECIPE( # pylint: disable=not-callable
203+
self.app_info
204+
)
205+
self.recipe_modules.append(recipe)
203206

204207
self.telemetry = (
205208
telemetry

0 commit comments

Comments
 (0)