Skip to content

Commit

Permalink
Fix unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhellander committed Feb 23, 2024
1 parent c36449c commit dc2dea6
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions fedn/fedn/network/api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@

import requests

from fedn.common.log_config import (logger, set_log_level_from_string,
set_log_stream)

__all__ = ['APIClient']


Expand Down Expand Up @@ -35,7 +32,6 @@ def __init__(self, host, port=None, secure=False, verify=False, token=None, verb
# Override potential env variable if token is passed as argument.
if token:
self.header = {"Authorization": "Token {}".format(token)}
set_log_level_from_string(verbosity)

def _get_url(self, endpoint):
if self.secure:
Expand Down

0 comments on commit dc2dea6

Please sign in to comment.