Skip to content

Commit

Permalink
fix:jans-cli remove unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdelwahabAdam committed Nov 24, 2022
1 parent a5e92ad commit 1f06d7c
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions jans-cli-tui/cli_tui/plugins/010_oxauth/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,11 +249,6 @@ async def coroutine():

data =[]

file1 = open("hopa.log", "w")
file1.write(str(response.status_code)+'\n')
file1.write(str(response.json()))
file1.close()

for d in result.get('entries', []):
data.append(
[
Expand Down Expand Up @@ -642,10 +637,6 @@ def edit_client_dialog(self, **params: Any) -> None:
selected_line_data = params['data']
title = _("Edit user Data (Clients)")

file1= open("hopa.log",'a')
file1.write("selected_line_data : "+str(selected_line_data)+'\n \n')
file1.close()

self.EditClientDialog = EditClientDialog(self.app, title=title, data=selected_line_data,save_handler=self.save_client,delete_UMAresource=self.delete_UMAresource)
self.app.show_jans_dialog(self.EditClientDialog)

Expand Down

0 comments on commit 1f06d7c

Please sign in to comment.