Skip to content

Commit

Permalink
Remove occurences of _os
Browse files Browse the repository at this point in the history
  • Loading branch information
MattHag committed May 5, 2024
1 parent b1b3ed6 commit 239fb01
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/logitech_receiver/diversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import math
import numbers
import os
import os as _os
import platform as _platform
import socket
import subprocess
Expand Down Expand Up @@ -100,7 +99,7 @@
if logger.isEnabledFor(logging.INFO):
logger.info("GDK Keymap %sset up", "" if gkeymap else "not ")

wayland = _os.getenv("WAYLAND_DISPLAY") # is this Wayland?
wayland = os.getenv("WAYLAND_DISPLAY") # is this Wayland?
if wayland:
logger.warning(
"rules cannot access modifier keys in Wayland, "
Expand Down

0 comments on commit 239fb01

Please sign in to comment.