Skip to content

Conversation

@bindreams
Copy link
Owner

No description provided.

@bindreams bindreams force-pushed the dev/refactor-generated-files branch 2 times, most recently from db4567f to e1ed71b Compare October 3, 2025 16:00
@bindreams bindreams force-pushed the dev/refactor-generated-files branch 7 times, most recently from 92ae4bf to d7a181e Compare October 3, 2025 18:10
@bindreams bindreams force-pushed the dev/refactor-generated-files branch from d7a181e to 590b7bb Compare October 3, 2025 18:28
Repository owner deleted a comment from github-actions bot Oct 3, 2025
@bindreams bindreams force-pushed the dev/refactor-generated-files branch 4 times, most recently from 71448b3 to 8117989 Compare October 3, 2025 21:28
Repository owner deleted a comment from github-actions bot Oct 3, 2025
Repository owner deleted a comment from github-actions bot Oct 3, 2025
Repository owner deleted a comment from github-actions bot Oct 3, 2025
Repository owner deleted a comment from github-actions bot Oct 3, 2025
Repository owner deleted a comment from github-actions bot Oct 3, 2025
@bindreams bindreams force-pushed the dev/refactor-generated-files branch from 8117989 to a21c91c Compare October 3, 2025 21:42
@github-actions
Copy link

github-actions bot commented Oct 3, 2025

Tracked files have changed:

diff --git a/src/stubs/stub-py310.g.pyi b/src/stubs/stub-py310.g.pyi
index 60254db..8468ee3 100644
--- a/src/stubs/stub-py310.g.pyi
+++ b/src/stubs/stub-py310.g.pyi
@@ -717,6 +717,14 @@ class Vector:
     Vector image information, returned from `Symbol.vector` after calling `Symbol.buffer_vector`
     """
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     @property
     def circles(self) -> VectorCircles:
         """
@@ -759,6 +767,14 @@ class VectorCircle:
     Circle vector elements returned from `Vector.circles`
     """
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     @property
     def color(self) -> int:
         """
@@ -798,6 +814,14 @@ class VectorCircle:
 
 class VectorCircles:
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     def __iter__(self) -> collections.abc.Iterator[VectorCircle]:
         ...
 
@@ -810,6 +834,14 @@ class VectorHexagon:
     Hexagon vector elements returned from `Vector.hexagons`
     """
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     @property
     def diameter(self) -> float:
         """
@@ -837,6 +869,14 @@ class VectorHexagon:
 
 class VectorHexagons:
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     def __iter__(self) -> collections.abc.Iterator[VectorHexagon]:
         ...
 
@@ -849,6 +889,14 @@ class VectorRect:
     Rectangle vector elements returned from `Vector.rectangles`
     """
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     @property
     def color(self) -> int:
         """
@@ -884,6 +932,14 @@ class VectorRect:
 
 class VectorRects:
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     def __iter__(self) -> collections.abc.Iterator[VectorRect]:
         ...
 
@@ -896,6 +952,14 @@ class VectorString:
     String vector elements returned from `Vector.strings`
     """
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     @property
     def fsize(self) -> float:
         """
@@ -945,6 +1009,14 @@ class VectorString:
 
 class VectorStrings:
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     def __iter__(self) -> collections.abc.Iterator[VectorString]:
         ...
 
diff --git a/src/stubs/stub-py311.g.pyi b/src/stubs/stub-py311.g.pyi
index 69ceaaf..abfda61 100644
--- a/src/stubs/stub-py311.g.pyi
+++ b/src/stubs/stub-py311.g.pyi
@@ -49,6 +49,11 @@ class DataMatrixOptions(enum.IntEnum):
     def __format__(self, format_spec):
         ...
 
+    def __str__(self):
+        """
+        x.__str__() <==> str(x)
+        """
+
 
 class InputMode(enum.Flag):
     """
@@ -100,6 +105,11 @@ class QrFamilyOptions(enum.IntEnum):
     def __format__(self, format_spec):
         ...
 
+    def __str__(self):
+        """
+        x.__str__() <==> str(x)
+        """
+
 
 class Seg:
     """
@@ -731,12 +741,25 @@ class UltracodeOptions(enum.IntEnum):
     def __format__(self, format_spec):
         ...
 
+    def __str__(self):
+        """
+        x.__str__() <==> str(x)
+        """
+
 
 class Vector:
     """
     Vector image information, returned from `Symbol.vector` after calling `Symbol.buffer_vector`
     """
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     @property
     def circles(self) -> VectorCircles:
         """
@@ -779,6 +802,14 @@ class VectorCircle:
     Circle vector elements returned from `Vector.circles`
     """
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     @property
     def color(self) -> int:
         """
@@ -818,6 +849,14 @@ class VectorCircle:
 
 class VectorCircles:
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     def __iter__(self) -> collections.abc.Iterator[VectorCircle]:
         ...
 
@@ -830,6 +869,14 @@ class VectorHexagon:
     Hexagon vector elements returned from `Vector.hexagons`
     """
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     @property
     def diameter(self) -> float:
         """
@@ -857,6 +904,14 @@ class VectorHexagon:
 
 class VectorHexagons:
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     def __iter__(self) -> collections.abc.Iterator[VectorHexagon]:
         ...
 
@@ -869,6 +924,14 @@ class VectorRect:
     Rectangle vector elements returned from `Vector.rectangles`
     """
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     @property
     def color(self) -> int:
         """
@@ -904,6 +967,14 @@ class VectorRect:
 
 class VectorRects:
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     def __iter__(self) -> collections.abc.Iterator[VectorRect]:
         ...
 
@@ -916,6 +987,14 @@ class VectorString:
     String vector elements returned from `Vector.strings`
     """
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     @property
     def fsize(self) -> float:
         """
@@ -965,6 +1044,14 @@ class VectorString:
 
 class VectorStrings:
 
+    @staticmethod
+    def __init__(*args, **kwargs):
+        """
+        --
+        
+        Initialize self. See help(type(self)) for accurate signature.
+        """
+
     def __iter__(self) -> collections.abc.Iterator[VectorString]:
         ...
 
diff --git a/src/stubs/stub-py313.g.pyi b/src/stubs/stub-py313.g.pyi
index bb2d5e5..6a2827b 100644
--- a/src/stubs/stub-py313.g.pyi
+++ b/src/stubs/stub-py313.g.pyi
@@ -986,4 +986,4 @@ class WarningLevel(enum.Enum):
 
 
 __upstream_version__: str = '2.15.0'
-__version__: str = '0.0.0'
+__version__: str = '1.2.2'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants