Skip to content

Commit e77975e

Browse files
committed
Modified by ruff
1 parent 8b54a5f commit e77975e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/flask_session/dynamodb/dynamodb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
from typing import Optional
66

77
import boto3
8-
from mypy_boto3_dynamodb.service_resource import DynamoDBServiceResource
98
from flask import Flask
109
from itsdangerous import want_bytes
10+
from mypy_boto3_dynamodb.service_resource import DynamoDBServiceResource
1111

1212
from ..base import ServerSideSession, ServerSideSessionInterface
1313
from ..defaults import Defaults

tests/test_memcached.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class TestMemcachedSession:
1111

1212
@contextmanager
1313
def setup_memcached(self):
14-
self.mc = memcache.Client(("127.0.0.1:11211"))
14+
self.mc = memcache.Client("127.0.0.1:11211")
1515
try:
1616
self.mc.flush_all()
1717
yield

0 commit comments

Comments
 (0)