diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2023-05-04 12:53:40 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2023-05-04 12:53:40 +0000 |
commit | aebdc7cfdfc3263c6f407cf5fbb388e0370e2bc3 (patch) | |
tree | f0fb099aae778b4b1b90401762cdedb8f55c2f88 /lib/sqlalchemy/testing | |
parent | 228490ead7048f2e558c25b0f055bdb952272ec4 (diff) | |
parent | e7e09649761cfb4afc242c541ab403258e75edd5 (diff) | |
download | sqlalchemy-aebdc7cfdfc3263c6f407cf5fbb388e0370e2bc3.tar.gz |
Merge "improve natural_path usage in two places" into main
Diffstat (limited to 'lib/sqlalchemy/testing')
-rw-r--r-- | lib/sqlalchemy/testing/fixtures.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/fixtures.py b/lib/sqlalchemy/testing/fixtures.py index fc1fa1483..bff251b0f 100644 --- a/lib/sqlalchemy/testing/fixtures.py +++ b/lib/sqlalchemy/testing/fixtures.py @@ -13,6 +13,7 @@ import itertools import random import re import sys +from typing import Any import sqlalchemy as sa from . import assertions @@ -675,7 +676,7 @@ class MappedTest(TablesTest, assertions.AssertsExecutionResults): # 'once', 'each', None run_setup_mappers = "each" - classes = None + classes: Any = None @config.fixture(autouse=True, scope="class") def _setup_tables_test_class(self): |