MCPcopy Create free account
hub / github.com/hunvreus/devpush / __init__

Method __init__

app/forms/storage.py:68–80  ·  view source on GitHub ↗
(
        self,
        request: Request,
        *args,
        db: AsyncSession,
        team: Team,
        project: Project | None = None,
        **kwargs,
    )

Source from the content-addressed store, hash-verified

66 environment_ids = StringField(_l("Environments"), validators=[Optional()])
67
68 def __init__(
69 self,
70 request: Request,
71 *args,
72 db: AsyncSession,
73 team: Team,
74 project: Project | None = None,
75 **kwargs,
76 ):
77 super().__init__(request, *args, **kwargs)
78 self.db = db
79 self.team = team
80 self.project = project
81
82 async def async_validate_name(self, field):
83 if self.db and self.team:

Callers 2

__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected