MCPcopy Index your code
hub / github.com/lincolnloop/python-qrcode / save

Method save

qrcode/image/styledpil.py:112–117  ·  view source on GitHub ↗
(self, stream, format=None, **kwargs)

Source from the content-addressed store, hash-verified

110 self._img.paste(region, logo_position)
111
112 def save(self, stream, format=None, **kwargs):
113 if format is None:
114 format = kwargs.get("kind", self.kind)
115 if "kind" in kwargs:
116 del kwargs["kind"]
117 self._img.save(stream, format=format, **kwargs)
118
119 def __getattr__(self, name):
120 return getattr(self._img, name)

Callers

nothing calls this directly

Calls 1

getMethod · 0.80

Tested by

no test coverage detected