Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable ruff EXE001 rule #11348

Closed
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: 0 additions & 2 deletions bit_manipulation/single_bit_manipulation_operations.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

"""Provide the functionality to manipulate a single bit."""


Expand Down
2 changes: 0 additions & 2 deletions ciphers/bifid.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

"""
The Bifid Cipher uses a Polybius Square to encipher a message in a way that
makes it fairly difficult to decipher without knowing the secret.
Expand Down
1 change: 0 additions & 1 deletion ciphers/decrypt_caesar_with_chi_squared.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
from __future__ import annotations


Expand Down
2 changes: 0 additions & 2 deletions ciphers/morse_code.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

"""
Python program to translate to and from Morse code.

Expand Down
2 changes: 0 additions & 2 deletions ciphers/polybius.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

"""
A Polybius Square is a table that allows someone to translate letters into numbers.

Expand Down
2 changes: 0 additions & 2 deletions data_structures/arrays/pairs_with_given_sum.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

"""
Given an array of integers and an integer req_sum, find the number of pairs of array
elements whose sum is equal to req_sum.
Expand Down
1 change: 0 additions & 1 deletion data_structures/binary_tree/merge_two_binary_trees.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/local/bin/python3
"""
Problem Description: Given two binary tree, return the merged tree.
The rule for merging is that if two nodes overlap, then put the value sum of
Expand Down
1 change: 0 additions & 1 deletion data_structures/hashing/double_hash.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
"""
Double hashing is a collision resolving technique in Open Addressed Hash tables.
Double hashing uses the idea of applying a second hash function to key when a collision
Expand Down
1 change: 0 additions & 1 deletion data_structures/hashing/hash_table.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
from .number_theory.prime_numbers import next_prime


Expand Down
1 change: 0 additions & 1 deletion data_structures/hashing/number_theory/prime_numbers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
"""
module to operations with prime numbers
"""
Expand Down
2 changes: 0 additions & 2 deletions data_structures/hashing/quadratic_probing.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

from .hash_table import HashTable


Expand Down
2 changes: 0 additions & 2 deletions data_structures/heap/randomized_heap.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

from __future__ import annotations

import random
Expand Down
2 changes: 0 additions & 2 deletions data_structures/heap/skew_heap.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

from __future__ import annotations

from collections.abc import Iterable, Iterator
Expand Down
3 changes: 0 additions & 3 deletions dynamic_programming/climbing_stairs.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#!/usr/bin/env python3


def climb_stairs(number_of_steps: int) -> int:
"""
LeetCdoe No.70: Climbing Stairs
Expand Down
2 changes: 0 additions & 2 deletions dynamic_programming/fast_fibonacci.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

"""
This program calculates the nth Fibonacci number in O(log(n)).
It's possible to calculate F(1_000_000) in less than a second.
Expand Down
2 changes: 0 additions & 2 deletions dynamic_programming/optimal_binary_search_tree.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

# This Python program implements an optimal binary search tree (abbreviated BST)
# building dynamic programming algorithm that delivers O(n^2) performance.
#
Expand Down
2 changes: 0 additions & 2 deletions graphs/breadth_first_search.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/python

"""Author: OMKAR PATHAK"""

from __future__ import annotations
Expand Down
2 changes: 0 additions & 2 deletions graphs/depth_first_search_2.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/python

"""Author: OMKAR PATHAK"""


Expand Down
1 change: 0 additions & 1 deletion graphs/graph_adjacency_list.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
"""
Author: Vikram Nithyanandam

Expand Down
1 change: 0 additions & 1 deletion graphs/graph_adjacency_matrix.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
"""
Author: Vikram Nithyanandam

Expand Down
2 changes: 0 additions & 2 deletions graphs/graph_list.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

# Author: OMKAR PATHAK, Nwachukwu Chidiebere

# Use a Python dictionary to construct the graph.
Expand Down
2 changes: 0 additions & 2 deletions machine_learning/logistic_regression.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/python

# Logistic Regression from scratch

# In[62]:
Expand Down
2 changes: 0 additions & 2 deletions maths/entropy.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

"""
Implementation of entropy of information
https://en.wikipedia.org/wiki/Entropy_(information_theory)
Expand Down
2 changes: 0 additions & 2 deletions neural_network/back_propagation_neural_network.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/python

"""

A Framework of Back Propagation Neural Network(BP) model
Expand Down
2 changes: 0 additions & 2 deletions other/davis_putnam_logemann_loveland.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

"""
Davis–Putnam–Logemann–Loveland (DPLL) algorithm is a complete, backtracking-based
search algorithm for deciding the satisfiability of propositional logic formulae in
Expand Down
1 change: 0 additions & 1 deletion other/doomsday.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/bin/python3
# Doomsday algorithm info: https://en.wikipedia.org/wiki/Doomsday_rule

DOOMSDAY_LEAP = [4, 1, 7, 4, 2, 6, 4, 1, 5, 3, 7, 5]
Expand Down
1 change: 0 additions & 1 deletion other/fischer_yates_shuffle.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/python
"""
The Fisher–Yates shuffle is an algorithm for generating a random permutation of a
finite sequence.
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ lint.ignore = [ # `ruff rule S101` for a description of that rule
"B905", # `zip()` without an explicit `strict=` parameter -- FIX ME
"E741", # Ambiguous variable name 'l' -- FIX ME
"EM101", # Exception must not use a string literal, assign to variable first
"EXE001", # Shebang is present but file is not executable" -- FIX ME
"G004", # Logging statement uses f-string
"INP001", # File `x/y/z.py` is part of an implicit namespace package. Add an `__init__.py`. -- FIX ME
"PGH003", # Use specific rule codes when ignoring type issues -- FIX ME
Expand Down
2 changes: 0 additions & 2 deletions searches/binary_search.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

"""
Pure Python implementations of binary search algorithms

Expand Down
1 change: 0 additions & 1 deletion sorts/bucket_sort.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
"""
Illustrate how to implement bucket sort algorithm.

Expand Down
2 changes: 0 additions & 2 deletions sorts/external_sort.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

#
# Sort large text files in a minimum amount of memory
#
Expand Down
1 change: 0 additions & 1 deletion web_programming/fetch_github_info.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
"""
Created by sarathkaul on 14/11/19
Updated by lawric1 on 24/11/20
Expand Down
1 change: 0 additions & 1 deletion web_programming/giphy.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
import requests

giphy_api_key = "YOUR API KEY"
Expand Down
1 change: 0 additions & 1 deletion web_programming/instagram_crawler.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
from __future__ import annotations

import json
Expand Down
2 changes: 0 additions & 2 deletions web_programming/world_covid19_stats.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python3

"""
Provide the current worldwide COVID-19 statistics.
This data is being scrapped from 'https://www.worldometers.info/coronavirus/'.
Expand Down