danielraynaud commited on
Commit
04664c1
·
verified ·
1 Parent(s): 5906a01

Update performance_analyzer.py

Browse files
Files changed (1) hide show
  1. performance_analyzer.py +1 -1
performance_analyzer.py CHANGED
@@ -5,7 +5,7 @@ logging.basicConfig(level=logging.INFO)
5
  logger = logging.getLogger(__name__)
6
 
7
  class PerformanceAnalyzer:
8
- def __init__(self, db_connection):
9
  self.conn = db_connection
10
 
11
  def analyze_user_performance(self, user_id: str) -> Dict:
 
5
  logger = logging.getLogger(__name__)
6
 
7
  class PerformanceAnalyzer:
8
+ def __init__(self, db_connection): # Deve ter este parâmetro
9
  self.conn = db_connection
10
 
11
  def analyze_user_performance(self, user_id: str) -> Dict: