PyCharm决定我的Python代码中的某些括号是“冗余的”。无论如何我想保留它们。所以PyCharm开始在我们身下用绿线惹恼我。我不想屈服于PyCharm的怪癖。
我能够通过以下方式忽略其他警告:
档案>设置>编辑>检查>取消选中您不喜欢的所有警告..
可悲的是,“冗余括号”警告未出现在该列表中。
如何忽略此警告?
答案 0 :(得分:7)
答案 1 :(得分:5)
检查中有redun
(PyCharm 2016.1.4)。仔细观察。
如果您仍然无法找到它,则设置菜单的左上角会显示一个搜索栏。搜索redundant parenthesis
并进行<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbarPath"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary">
<ImageView
android:id="@+id/imgBack"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="left"
android:layout_marginBottom="4dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="4dp"
android:src="@drawable/ic_action_back" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:id="@+id/imgClear"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="15dp"
android:src="@drawable/ic_action_discard" />
<ImageView
android:id="@+id/imgStop"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="15dp"
android:src="@drawable/ic_action_stop" />
<ImageView
android:id="@+id/imgPath"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="15dp"
android:src="@drawable/ic_action_merge" />
<ImageView
android:id="@+id/imgToggle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_action_map" />
</LinearLayout>
<ImageView
android:id="@+id/imgForward"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right"
android:layout_marginBottom="4dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="4dp"
android:src="@drawable/ic_action_forward" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mapPath"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/appBar" />
</RelativeLayout>
检查。