Code-style: Remove double semicolons at end of statement.

This commit is contained in:
Jeroen Bakker 2023-01-19 09:46:45 +01:00
parent 93d84e87b2
commit 71b5799852
1 changed files with 1 additions and 1 deletions

View File

@ -625,7 +625,7 @@ static PyObject *pygpu_shader_attrs_info_get(BPyGPUShader *self, PyObject *UNUSE
{
uint attr_len = GPU_shader_get_attribute_len(self->shader);
int location_test = 0, attrs_added = 0;
;
PyObject *ret = PyTuple_New(attr_len);
while (attrs_added < attr_len) {
char name[256];