Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
Boris-code committed Mar 18, 2024
1 parent c03c2f1 commit 9147a7f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions feapder/network/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,12 @@ def __setattr__(self, key, value):
if key in self.__class__.__REQUEST_ATTRS__:
self.requests_kwargs[key] = value

# def __getattr__(self, item):
# try:
# return self.__dict__[item]
# except:
# raise AttributeError("Request has no attribute %s" % item)

def __lt__(self, other):
return self.priority < other.priority

Expand Down

0 comments on commit 9147a7f

Please sign in to comment.