From 81e49b45ce9146250fd2f798e549418f1d44afb3 Mon Sep 17 00:00:00 2001 From: Shay Nehmad Date: Tue, 7 May 2019 15:59:16 +0300 Subject: [PATCH] Small fix Overshadows local --- monkey/monkey_island/cc/auth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monkey/monkey_island/cc/auth.py b/monkey/monkey_island/cc/auth.py index 2e7eb69ff..7f15cb45e 100644 --- a/monkey/monkey_island/cc/auth.py +++ b/monkey/monkey_island/cc/auth.py @@ -10,8 +10,8 @@ __author__ = 'itay.mizeretz' class User(object): - def __init__(self, id, username, secret): - self.id = id + def __init__(self, user_id, username, secret): + self.id = user_id self.username = username self.secret = secret