From 989a4db50f7666da876dca026b62d511ab476818 Mon Sep 17 00:00:00 2001 From: Joachim Metz Date: Mon, 7 Oct 2024 06:27:52 +0200 Subject: [PATCH] Changes to documentation due to failing link check (#772) --- dfvfs/helpers/command_line.py | 1 - dfvfs/lib/glob2regex.py | 5 +---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/dfvfs/helpers/command_line.py b/dfvfs/helpers/command_line.py index 146a6aad..040a7c90 100644 --- a/dfvfs/helpers/command_line.py +++ b/dfvfs/helpers/command_line.py @@ -286,7 +286,6 @@ def Write(self, output_writer): class CLIVolumeScannerMediator(volume_scanner.VolumeScannerMediator): """Command line volume scanner mediator.""" - # For context see: http://en.wikipedia.org/wiki/Byte _UNITS_1000 = ['B', 'kB', 'MB', 'GB', 'TB', 'EB', 'ZB', 'YB'] _UNITS_1024 = ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'EiB', 'ZiB', 'YiB'] diff --git a/dfvfs/lib/glob2regex.py b/dfvfs/lib/glob2regex.py index d0628aeb..8f7cb534 100644 --- a/dfvfs/lib/glob2regex.py +++ b/dfvfs/lib/glob2regex.py @@ -1,8 +1,5 @@ # -*- coding: utf-8 -*- -"""Glob to regular expression conversion. - -Also see: https://en.wikipedia.org/wiki/Glob_(programming) -""" +"""Glob to regular expression conversion.""" import re import sys