diff options
| author | Max Nanis | 2026-02-24 17:26:15 -0500 |
|---|---|---|
| committer | Max Nanis | 2026-02-24 17:26:15 -0500 |
| commit | 8c1940445503fd6678d0961600f2be81622793a2 (patch) | |
| tree | b9173562b8824b5eaa805e446d9d780e1f23fb2a /jb/managers/__init__.py | |
| parent | 25d8c3c214baf10f6520cc1351f78473150e5d7a (diff) | |
| download | amt-jb-8c1940445503fd6678d0961600f2be81622793a2.tar.gz amt-jb-8c1940445503fd6678d0961600f2be81622793a2.zip | |
Extensive use of type checking. Movement of pytest conf towards handling managers (for db agnostic unittest). Starting to organize pytests.
Diffstat (limited to 'jb/managers/__init__.py')
| -rw-r--r-- | jb/managers/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jb/managers/__init__.py b/jb/managers/__init__.py index e2aab6d..e99569a 100644 --- a/jb/managers/__init__.py +++ b/jb/managers/__init__.py @@ -15,8 +15,8 @@ class PostgresManager: def __init__( self, pg_config: PostgresConfig, - permissions: Collection[Permission] = None, - **kwargs, + permissions: Collection[Permission] = None, # type: ignore + **kwargs, # type: ignore ): super().__init__(**kwargs) self.pg_config = pg_config |
