Skip to content

Commit edfa71f

Browse files
committed
class level docstring updated
1 parent c4cf9e3 commit edfa71f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

settings.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
44
This module contains the configuration settings for the application.
55
6-
Classes:
7-
- Config: Represents the configuration object with various settings.
8-
96
Attributes:
107
- SECRET_KEY: A random string used for cryptographic purposes.
118
- basedir: The absolute path of the directory where the script runs.
@@ -18,8 +15,10 @@
1815
"""
1916
import os
2017

21-
2218
class Config:
19+
"""
20+
Config class containing the configuration settings for the application.
21+
"""
2322

2423
SECRET_KEY = os.urandom(32)
2524
# Grabs the folder where the script runs.

0 commit comments

Comments
 (0)