Skip to content

Commit

Permalink
Update realtime_voice.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yokka361 committed Mar 3, 2025
1 parent b83d93e commit bf94189
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/realtime_voice.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
QOS_LEVEL = 1

class LaptopVoiceCall:
def _init_(self, user_id):
def __init__(self, user_id):
self.user_id = user_id
self.other_user = None
self.call_active = False
Expand Down Expand Up @@ -261,7 +261,7 @@ def interactive_console(self):

print("Exiting Laptop Voice Call System")

if __name__ == "_main_":
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Laptop Voice Call System')
parser.add_argument('user_id', type=str, help='Unique user ID (e.g., alice, bob)')
args = parser.parse_args()
Expand Down

0 comments on commit bf94189

Please sign in to comment.