From 8643f41bfe1fe7ab19184f30130ff1f95140eceb Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 21 Nov 2021 09:36:12 -0500 Subject: refactor: super-nit-picky tweaks from mypy --- coverage/files.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coverage/files.py') diff --git a/coverage/files.py b/coverage/files.py index afb0dbf5..3cf87faa 100644 --- a/coverage/files.py +++ b/coverage/files.py @@ -137,9 +137,9 @@ if env.WINDOWS: return actpath else: - def actual_path(filename): + def actual_path(path): """The actual path for non-Windows platforms.""" - return filename + return path @contract(returns='unicode') -- cgit v1.2.1