We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9a054a commit 60e7c0bCopy full SHA for 60e7c0b
pyomo/common/download.py
@@ -439,7 +439,8 @@ def filter_fcn(info):
439
# Strip high bits & group/other write bits
440
info.mode &= 0o755
441
return True
442
- if sys.version_info[:2] < (3,12):
+
443
+ if sys.version_info[:2] < (3, 12):
444
tar_args = {}
445
else:
446
# Add a tar filter to suppress deprecation warning in Python 3.12+
pyomo/common/tests/test_log.py
@@ -193,8 +193,7 @@ def test_no_base(self):
193
def test_no_message(self):
194
self.handler.setFormatter(
195
LegacyPyomoFormatter(
196
- base=os.path.dirname(__file__),
197
- verbosity=lambda: is_debug_set(logger),
+ base=os.path.dirname(__file__), verbosity=lambda: is_debug_set(logger)
198
)
199
200
0 commit comments