Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
seba-aln committed Aug 7, 2023
1 parent 5d8cdca commit 0048622
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pubnub/endpoints/entities/user/update_user.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pubnub.endpoints.entities.endpoint import EntitiesEndpoint, UserEndpoint,\
from pubnub.endpoints.entities.endpoint import EntitiesEndpoint, UserEndpoint, \
IncludeCustomEndpoint, CustomAwareEndpoint
from pubnub.enums import PNOperationType
from pubnub.enums import HttpMethod
Expand Down
2 changes: 1 addition & 1 deletion pubnub/request_handlers/requests_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from pubnub import utils
from pubnub.enums import PNStatusCategory
from pubnub.errors import PNERR_CLIENT_ERROR, PNERR_UNKNOWN_ERROR, PNERR_TOO_MANY_REDIRECTS_ERROR,\
from pubnub.errors import PNERR_CLIENT_ERROR, PNERR_UNKNOWN_ERROR, PNERR_TOO_MANY_REDIRECTS_ERROR, \
PNERR_CLIENT_TIMEOUT, PNERR_HTTP_ERROR, PNERR_CONNECTION_ERROR
from pubnub.errors import PNERR_SERVER_ERROR
from pubnub.exceptions import PubNubException
Expand Down
3 changes: 2 additions & 1 deletion tests/functional/event_engine/test_subscribe.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ async def test_subscribe(mocked_status, mocked_message):
await asyncio.gather(*asyncio.tasks.all_tasks())
except asyncio.CancelledError:
pass
await asyncio.sleep(0)

await asyncio.sleep(0.1)
await pubnub.close_session()


Expand Down

0 comments on commit 0048622

Please sign in to comment.