omgy commited on
Commit
8350e48
·
verified ·
1 Parent(s): 7f90bd0

Update app/data/__init__.py

Browse files
Files changed (1) hide show
  1. app/data/__init__.py +0 -28
app/data/__init__.py CHANGED
@@ -1,28 +0,0 @@
1
- """
2
- Data module for mock profiles and test data.
3
- Contains realistic financial profiles for demo and testing.
4
- """
5
-
6
- from app.data.mock_profiles import (
7
- MOCK_PROFILES,
8
- PROFILE_DESCRIPTIONS,
9
- PROFILE_ENTRY_LEVEL,
10
- PROFILE_MID_CAREER,
11
- PROFILE_YOUNG_PROFESSIONAL,
12
- assign_mock_profile_to_user,
13
- get_all_profiles,
14
- get_profile_by_index,
15
- get_random_mock_profile,
16
- )
17
-
18
- __all__ = [
19
- "MOCK_PROFILES",
20
- "PROFILE_YOUNG_PROFESSIONAL",
21
- "PROFILE_MID_CAREER",
22
- "PROFILE_ENTRY_LEVEL",
23
- "PROFILE_DESCRIPTIONS",
24
- "get_random_mock_profile",
25
- "get_profile_by_index",
26
- "get_all_profiles",
27
- "assign_mock_profile_to_user",
28
- ]