pitrou commented on code in PR #43715:
URL: https://github.com/apache/arrow/pull/43715#discussion_r1773418536


##########
dev/archery/archery/integration/tester_nanoarrow.py:
##########
@@ -45,17 +50,39 @@ class NanoarrowTester(Tester):
 
     name = "nanoarrow"
 
+    def _run(self, arrow_path, json_path, command, quirks):
+        env = {
+            'ARROW_PATH': arrow_path,
+            'JSON_PATH': json_path,
+            'COMMAND': command,
+            **{
+                f'QUIRK_{q}': "1"
+                for q in quirks or ""

Review Comment:
   Nit (Python strings are sequences, but still)
   ```suggestion
                   for q in quirks or ()
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to