Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pytest==8.3.5
flake8==7.2.0
black==25.1.0
black==26.3.1
mypy==1.15.0
isort==6.0.1
PyYAML==6.0.2
Expand Down
6 changes: 2 additions & 4 deletions gprofiler/metadata/application_identifiers_java.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,8 @@ def get_app_id(self, process: Process) -> Optional[str]:
return None
props_path = os.path.join(process.cwd(), self._SPARK_PROPS_FILE)
if not os.path.exists(props_path):
_logger.warning(
f"Spark props file doesn't exist: {props_path}. \
Process args: {process.cmdline()}, pid: {process.pid}"
)
_logger.warning(f"Spark props file doesn't exist: {props_path}. \
Process args: {process.cmdline()}, pid: {process.pid}")
return self._APP_NAME_NOT_FOUND
with open(props_path) as f:
props_text = f.read()
Expand Down
1 change: 1 addition & 0 deletions gprofiler/metadata/py_module_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
Some of the functions in this module are implemented based on similar functions
in pip 21.3.1, as mentioned in the functions' documentation.
"""

import csv
import email.parser
import functools
Expand Down
Loading