Skip to content

Commit 098b8c1

Browse files
committed
Silence module name warnings
These are scripts, not modules. boot-uml.py:1:0: C0103: Module name "boot-uml" doesn't conform to snake_case naming style (invalid-name) boot-qemu.py:1:0: C0103: Module name "boot-qemu" doesn't conform to snake_case naming style (invalid-name) Signed-off-by: Nathan Chancellor <nathan@kernel.org>
1 parent 6249ca4 commit 098b8c1

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

boot-qemu.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# pylint: disable=invalid-name
23

34
import argparse
45
import os

boot-uml.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# pylint: disable=invalid-name
23

34
import argparse
45
from pathlib import Path

0 commit comments

Comments
 (0)