Skip to content

Commit c3f8dbf

Browse files
committed
Fix unsafe change to revert never ending test
1 parent 3a5226e commit c3f8dbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/posit/connect/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def update(self, other=(), /, **kwargs: Optional[str]):
183183
for key in other:
184184
d[key] = other[key]
185185
elif hasattr(other, "keys"):
186-
for key in other:
186+
for key in other.keys(): # noqa: SIM118
187187
d[key] = other[key]
188188
else:
189189
for key, value in other:

0 commit comments

Comments
 (0)