Skip to content

Commit

Permalink
fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
JR-1991 committed Dec 16, 2024
1 parent 4300889 commit 0f96f6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions mdmodels/datamodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@

import asyncio
from pathlib import Path
from typing import get_args, Any, get_origin, Coroutine
from typing import Any, get_origin, Coroutine
from xml.dom import minidom

import jsonpath
from bigtree import nested_dict_to_tree # type: ignore
from pydantic import model_validator, ValidationError
from pydantic_core import InitErrorDetails
from pydantic_xml import BaseXmlModel
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_datamodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test_parse_from_path(self):
for part in expected_parts:
assert part in library, f"Part {part} not found in library"

def test_parse_from_url(self, httpx_mock):
def test_parse_from_url(self, httpx_mock): # noqa: F811
"""
Test parsing a DataModel from a URL.
Expand Down

0 comments on commit 0f96f6d

Please sign in to comment.