Skip to content

Commit

Permalink
Fix py script
Browse files Browse the repository at this point in the history
  • Loading branch information
isen-ng committed Sep 3, 2024
1 parent ee92f93 commit 1f6e56a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion auto_meta_updater.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python

import argparse
import os
import re
from typing import List, Dict
Expand Down Expand Up @@ -113,7 +114,7 @@ def __list_work_files(self):
continue

# major meta cask only contains 1 dash. eg `dotnet-sdk8`
if file.count('-') is 1:
if file.count('-') == 1:
continue

result.append(file)
Expand Down

0 comments on commit 1f6e56a

Please sign in to comment.