We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa9eb7a commit e2db7e2Copy full SHA for e2db7e2
slowapi/extension.py
@@ -157,7 +157,9 @@ def __init__(
157
158
dotenv_file_exists = os.path.isfile(".env")
159
self.app_config = Config(
160
- ".env" if dotenv_file_exists and config_filename is None else config_filename
+ ".env"
161
+ if dotenv_file_exists and config_filename is None
162
+ else config_filename
163
)
164
165
self.enabled = enabled
0 commit comments