Skip to content

Commit

Permalink
keyword args for SchemaOrgBase.py (fixes type checking bug in pylance…
Browse files Browse the repository at this point in the history
…/VSCode)
  • Loading branch information
crbaker89 committed Feb 17, 2022
1 parent 17d6b2d commit 0708fc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydantic_schemaorg/Hospital.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from pydantic_schemaorg.MedicalOrganization import MedicalOrganization


class Hospital(EmergencyService, CivicStructure, MedicalOrganization):
class Hospital(MedicalOrganization, EmergencyService, CivicStructure):
"""A hospital.
See: https://schema.org/Hospital
Expand Down

0 comments on commit 0708fc7

Please sign in to comment.