Skip to content

Commit

Permalink
Fix bad type hint on test variable
Browse files Browse the repository at this point in the history
The type hint should be `Schema` and not a `MutableMapping`.
  • Loading branch information
JeremyMcCormick committed Jul 22, 2024
1 parent ab3f7c9 commit e455ef8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
import shutil
import tempfile
import unittest
from collections.abc import MutableMapping
from typing import Any

import sqlalchemy
import yaml
Expand All @@ -39,7 +37,7 @@
class VisitorTestCase(unittest.TestCase):
"""Test the TAP loading visitor."""

schema_obj: MutableMapping[str, Any] = {}
schema_obj: Schema

def setUp(self) -> None:
"""Load data from a test file."""
Expand Down

0 comments on commit e455ef8

Please sign in to comment.