Skip to content

Commit

Permalink
Modified by ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee Goolsbee committed Apr 16, 2024
1 parent 8b54a5f commit e77975e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/flask_session/dynamodb/dynamodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from typing import Optional

import boto3
from mypy_boto3_dynamodb.service_resource import DynamoDBServiceResource
from flask import Flask
from itsdangerous import want_bytes
from mypy_boto3_dynamodb.service_resource import DynamoDBServiceResource

from ..base import ServerSideSession, ServerSideSessionInterface
from ..defaults import Defaults
Expand Down
2 changes: 1 addition & 1 deletion tests/test_memcached.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class TestMemcachedSession:

@contextmanager
def setup_memcached(self):
self.mc = memcache.Client(("127.0.0.1:11211"))
self.mc = memcache.Client("127.0.0.1:11211")
try:
self.mc.flush_all()
yield
Expand Down

0 comments on commit e77975e

Please sign in to comment.