MCPcopy
hub / github.com/django/django / __init__

Method __init__

django/forms/fields.py:779–781  ·  view source on GitHub ↗
(self, *, assume_scheme=None, **kwargs)

Source from the content-addressed store, hash-verified

777 default_validators = [validators.URLValidator()]
778
779 def __init__(self, *, assume_scheme=None, **kwargs):
780 self.assume_scheme = assume_scheme or "https"
781 super().__init__(strip=True, **kwargs)
782
783 def to_python(self, value):
784 value = super().to_python(value)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected