Skip to content

Commit

Permalink
Merge pull request #165 from Stegallo/black-format
Browse files Browse the repository at this point in the history
Black Formatting
  • Loading branch information
Stegallo authored Nov 3, 2023
2 parents 9b0e660 + 1b0b286 commit af06ad3
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion y_2020/day17.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ def count_active_nb3d(self, ci, cj, ck):
for x in range(-1, 2):
for y in range(-1, 2):
for z in range(-1, 2):

if x == y == z == 0:
continue
c += self.check_box3d(ck, cj, ci, x, y, z)
Expand Down
1 change: 0 additions & 1 deletion y_2020/day7.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ def _calculate_1(self):
def _calculate_2(self):
c = 0
for k, bagrules in self.__rules.items():

self.enhance2(bagrules)

for k, bagrule in self.__rules.items():
Expand Down
1 change: 0 additions & 1 deletion y_2022/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ def get_file_content(day: str, test):


def load_input(day, test) -> List[List[str]]:

raw_string = get_file_content(day, test)

if raw_string and raw_string[-1] == "\n":
Expand Down

0 comments on commit af06ad3

Please sign in to comment.