Add white space after assert statements

This commit is contained in:
Grant Sanderson
2024-08-16 12:15:55 -05:00
parent 3f15715ff1
commit 902a4f264e
15 changed files with 30 additions and 30 deletions

View File

@ -219,7 +219,7 @@ class ShaderWrapper(object):
self.set_ctx_clip_plane(self.use_clip_plane())
def render(self):
assert(self.vao is not None)
assert self.vao is not None
self.vao.render()
def update_program_uniforms(self, camera_uniforms: UniformDict):